Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3196)

Unified Diff: chrome/browser/android/chrome_startup_flags.cc

Issue 203473003: [FastTextAutosizer] Enable FastTextAutosizer on tot/dev by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/chrome_startup_flags.cc
diff --git a/chrome/browser/android/chrome_startup_flags.cc b/chrome/browser/android/chrome_startup_flags.cc
index 5aa7bc00d87a56b66bd880a924233716c743caba..36b2c68b9617a7720937ea2ed564be470317a033 100644
--- a/chrome/browser/android/chrome_startup_flags.cc
+++ b/chrome/browser/android/chrome_startup_flags.cc
@@ -55,4 +55,11 @@ void SetChromeSpecificCommandLineFlags() {
channel == chrome::VersionInfo::CHANNEL_DEV) {
SetCommandLineSwitch(switches::kEnableDomDistiller);
}
+
+ // Enable the Fast Text Autosizer on local builds, canary and dev-channel.
skobes 2014/03/19 19:41:29 Does this mean local builds will use FTA even with
+ if (channel == chrome::VersionInfo::CHANNEL_UNKNOWN ||
+ channel == chrome::VersionInfo::CHANNEL_CANARY ||
+ channel == chrome::VersionInfo::CHANNEL_DEV) {
+ SetCommandLineSwitch(switches::kEnableFastTextAutosizing);
+ }
}
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698