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

Unified Diff: chrome/browser/about_flags.cc

Issue 1257633002: Componentize VersionInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert version_info::Channel to a "class enum" Created 5 years, 5 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/app/generated_resources.grd ('k') | chrome/browser/apps/app_window_intercept_all_keys_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/apps/app_window_intercept_all_keys_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698