0

[OOPPD] Enable feature by default for Linux, macOS

Bug: 40561724
Change-Id: Iac4d1103b4acbf4c4e8402f452253311f476b5b2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6032774
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Alan Screen <awscreen@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1386002}
This commit is contained in:
Alan Screen
2024-11-21 01:18:53 +00:00
committed by Chromium LUCI CQ
parent d229fce649
commit dabc77b599

@ -69,7 +69,12 @@ BASE_FEATURE(kUseXpsForPrintingFromPdf,
// out-of-process.
BASE_FEATURE(kEnableOopPrintDrivers,
"EnableOopPrintDrivers",
base::FEATURE_DISABLED_BY_DEFAULT);
#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};