Index: chrome/browser/about_flags.cc |
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
index 07296dd75ce2cb3ce1f0c395530c354eedf47617..8568b8e50b79222e2428756c2ac086b2840c6990 100644 |
--- a/chrome/browser/about_flags.cc |
+++ b/chrome/browser/about_flags.cc |
@@ -2179,27 +2179,27 @@ void GetSanitizedEnabledFlags( |
} |
bool SkipConditionalExperiment(const Experiment& experiment) { |
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); |
+ version_info::Channel channel = chrome::VersionInfo::GetChannel(); |
#if defined(OS_ANDROID) |
// enable-data-reduction-proxy-dev is only available for the Dev/Beta channel. |
if (!strcmp("enable-data-reduction-proxy-dev", experiment.internal_name) && |
- channel != chrome::VersionInfo::CHANNEL_BETA && |
- channel != chrome::VersionInfo::CHANNEL_DEV) { |
+ channel != version_info::Channel::BETA && |
+ channel != version_info::Channel::DEV) { |
return true; |
} |
// enable-data-reduction-proxy-alt is only available for the Dev channel. |
if (!strcmp("enable-data-reduction-proxy-alt", experiment.internal_name) && |
- channel != chrome::VersionInfo::CHANNEL_DEV) { |
+ channel != version_info::Channel::DEV) { |
return true; |
} |
// enable-data-reduction-proxy-carrier-test is only available for Chromium |
// builds and the Canary/Dev channel. |
if (!strcmp("enable-data-reduction-proxy-carrier-test", |
experiment.internal_name) && |
- channel != chrome::VersionInfo::CHANNEL_DEV && |
- channel != chrome::VersionInfo::CHANNEL_CANARY && |
- channel != chrome::VersionInfo::CHANNEL_UNKNOWN) { |
+ channel != version_info::Channel::DEV && |
+ channel != version_info::Channel::CANARY && |
+ channel != version_info::Channel::UNKNOWN) { |
return true; |
} |
#endif |
@@ -2207,10 +2207,10 @@ bool SkipConditionalExperiment(const Experiment& experiment) { |
// data-reduction-proxy-lo-fi is only available for Chromium builds and |
// 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) { |
+ channel != version_info::Channel::BETA && |
+ channel != version_info::Channel::DEV && |
+ channel != version_info::Channel::CANARY && |
+ channel != version_info::Channel::UNKNOWN) { |
return true; |
} |
@@ -2218,9 +2218,9 @@ bool SkipConditionalExperiment(const Experiment& experiment) { |
// builds and the Canary/Dev channels. |
if (!strcmp("enable-data-reduction-proxy-config-client", |
experiment.internal_name) && |
- channel != chrome::VersionInfo::CHANNEL_DEV && |
- channel != chrome::VersionInfo::CHANNEL_CANARY && |
- channel != chrome::VersionInfo::CHANNEL_UNKNOWN) { |
+ channel != version_info::Channel::DEV && |
+ channel != version_info::Channel::CANARY && |
+ channel != version_info::Channel::UNKNOWN) { |
return true; |
} |
@@ -2229,9 +2229,9 @@ bool SkipConditionalExperiment(const Experiment& experiment) { |
// builds and Canary/Dev channel. |
if (!strcmp("enable-data-reduction-proxy-bypass-warnings", |
experiment.internal_name) && |
- channel != chrome::VersionInfo::CHANNEL_UNKNOWN && |
- channel != chrome::VersionInfo::CHANNEL_CANARY && |
- channel != chrome::VersionInfo::CHANNEL_DEV) { |
+ channel != version_info::Channel::UNKNOWN && |
+ channel != version_info::Channel::CANARY && |
+ channel != version_info::Channel::DEV) { |
return true; |
} |
#endif |