Commit 3af7932b authored by Jesse Schettler's avatar Jesse Schettler Committed by Commit Bot

Revert "arc: Enable print-spooler-experiment feature flag by default"

This reverts commit c79e6751.

Reason for revert: Fixing CTS for ToT

Original change's description:
> arc: Enable print-spooler-experiment feature flag by default
> 
> Also, enable the flag for all channels except stable.
> 
> Bug: b:130798103
> Test: android-sh -c getprop | grep ro.boot.arc_print_spooler
> Change-Id: I4ca45c248737bbc0e5c90ed679bfe2b77ec9ed12
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784006
> Reviewed-by: Elijah Taylor <elijahtaylor@chromium.org>
> Commit-Queue: Jesse Schettler <jschettler@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#693860}

TBR=yusukes@chromium.org,elijahtaylor@chromium.org,jschettler@chromium.org

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug: b:130798103
Change-Id: I400c7050bbf4c82ffba230b1900d14daa309c628
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1831273Reviewed-by: default avatarYusuke Sato <yusukes@chromium.org>
Commit-Queue: Jesse Schettler <jschettler@chromium.org>
Cr-Commit-Position: refs/heads/master@{#701184}
parent a14a1e5a
...@@ -62,7 +62,7 @@ const base::Feature kPictureInPictureFeature{"ArcPictureInPicture", ...@@ -62,7 +62,7 @@ const base::Feature kPictureInPictureFeature{"ArcPictureInPicture",
// Controls experimental print spooler feature for ARC. // Controls experimental print spooler feature for ARC.
const base::Feature kPrintSpoolerExperimentFeature{ const base::Feature kPrintSpoolerExperimentFeature{
"ArcPrintSpoolerExperiment", base::FEATURE_ENABLED_BY_DEFAULT}; "ArcPrintSpoolerExperiment", base::FEATURE_DISABLED_BY_DEFAULT};
// Controls Smart Text Selection for Chrome. // Controls Smart Text Selection for Chrome.
// When enabled, the context menu will show contextual quick actions based on // When enabled, the context menu will show contextual quick actions based on
......
...@@ -376,7 +376,8 @@ void ArcSessionImpl::OnLcdDensity(int32_t lcd_density) { ...@@ -376,7 +376,8 @@ void ArcSessionImpl::OnLcdDensity(int32_t lcd_density) {
request.set_arc_custom_tabs_experiment(is_custom_tab_enabled); request.set_arc_custom_tabs_experiment(is_custom_tab_enabled);
const bool is_arc_print_spooler_enabled = const bool is_arc_print_spooler_enabled =
base::FeatureList::IsEnabled(arc::kPrintSpoolerExperimentFeature) && base::FeatureList::IsEnabled(arc::kPrintSpoolerExperimentFeature) &&
delegate_->GetChannel() != version_info::Channel::STABLE; delegate_->GetChannel() != version_info::Channel::STABLE &&
delegate_->GetChannel() != version_info::Channel::BETA;
request.set_arc_print_spooler_experiment(is_arc_print_spooler_enabled); request.set_arc_print_spooler_experiment(is_arc_print_spooler_enabled);
request.set_lcd_density(lcd_density); request.set_lcd_density(lcd_density);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment