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 4d295f79d56cc4337cfd6962f1ddf7090bb9862e..8d1c18e2a91ac1c14c09b055d19b256ba7808b6f 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. |
+ if (channel == chrome::VersionInfo::CHANNEL_UNKNOWN || |
+ channel == chrome::VersionInfo::CHANNEL_CANARY || |
+ channel == chrome::VersionInfo::CHANNEL_DEV) { |
+ SetCommandLineSwitch(switches::kEnableFastTextAutosizing); |
+ } |
} |