diff options
author | megjablon <megjablon@chromium.org> | 2015-06-25 15:57:08 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-25 22:57:39 +0000 |
commit | 3d3aef50d9af76cf94ac58014c850bcb310c8684 (patch) | |
tree | 78c611146d25727c369e4dadd52d5e32d773667e | |
parent | 4b649a907d2458455d7f333d628b1b4720769afd (diff) | |
download | chromium_src-3d3aef50d9af76cf94ac58014c850bcb310c8684.zip chromium_src-3d3aef50d9af76cf94ac58014c850bcb310c8684.tar.gz chromium_src-3d3aef50d9af76cf94ac58014c850bcb310c8684.tar.bz2 |
Allow the Lo-Fi flag on Beta.
BUG=497437
Review URL: https://codereview.chromium.org/1216513002
Cr-Commit-Position: refs/heads/master@{#336288}
-rw-r--r-- | chrome/browser/about_flags.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc index 4a20747..af26eee 100644 --- a/chrome/browser/about_flags.cc +++ b/chrome/browser/about_flags.cc @@ -2149,8 +2149,9 @@ bool SkipConditionalExperiment(const Experiment& experiment, #endif // data-reduction-proxy-lo-fi is only available for Chromium builds and - // the Canary/Dev channel. + // the Canary/Dev/Beta channels. if (!strcmp("data-reduction-proxy-lo-fi", experiment.internal_name) && + channel != chrome::VersionInfo::CHANNEL_BETA && channel != chrome::VersionInfo::CHANNEL_DEV && channel != chrome::VersionInfo::CHANNEL_CANARY && channel != chrome::VersionInfo::CHANNEL_UNKNOWN) { |