blob: a1fde785950acb82e02de6199b2bab8089b5e9a3 [file]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "printing/printing_features.h"
#include "build/build_config.h"
#include "printing/buildflags/buildflags.h"
#if BUILDFLAG(ENABLE_OOP_PRINTING)
#include "base/metrics/field_trial_params.h"
#endif
namespace printing::features {
// Align PDF default print settings (scale&center) with HTML.
BASE_FEATURE(kAlignPdfDefaultPrintSettingsWithHTML,
base::FEATURE_DISABLED_BY_DEFAULT);
#if BUILDFLAG(IS_LINUX)
// Use the CUPS IPP printing backend instead of the original CUPS backend that
// calls the deprecated PPD API.
BASE_FEATURE(kCupsIppPrintingBackend, base::FEATURE_DISABLED_BY_DEFAULT);
// Use the XDG Print Portal for the system print dialog.
BASE_FEATURE(kLinuxXdgPrintPortal, base::FEATURE_ENABLED_BY_DEFAULT);
#endif // BUILDFLAG(IS_LINUX)
#if BUILDFLAG(IS_WIN)
// When using PostScript level 3 printing, render text with Type 42 fonts if
// possible.
BASE_FEATURE(kPrintWithPostScriptType42Fonts,
base::FEATURE_DISABLED_BY_DEFAULT);
// When using GDI printing, avoid rasterization if possible.
BASE_FEATURE(kPrintWithReducedRasterization, base::FEATURE_DISABLED_BY_DEFAULT);
#endif // BUILDFLAG(IS_WIN)
#if BUILDFLAG(ENABLE_OOP_PRINTING)
// Enables printing interactions with the operating system to be performed
// out-of-process.
BASE_FEATURE(kEnableOopPrintDrivers,
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_MAC)
base::FEATURE_ENABLED_BY_DEFAULT
#else
base::FEATURE_DISABLED_BY_DEFAULT
#endif
);
const base::FeatureParam<bool> kEnableOopPrintDriversEarlyStart{
&kEnableOopPrintDrivers, "EarlyStart", false};
const base::FeatureParam<bool> kEnableOopPrintDriversJobPrint{
&kEnableOopPrintDrivers, "JobPrint", true};
const base::FeatureParam<bool> kEnableOopPrintDriversSandbox{
&kEnableOopPrintDrivers, "Sandbox", false};
#if BUILDFLAG(IS_WIN)
const base::FeatureParam<bool> kEnableOopPrintDriversSingleProcess{
&kEnableOopPrintDrivers, "SingleProcess", true};
#endif
#endif // BUILDFLAG(ENABLE_OOP_PRINTING)
} // namespace printing::features