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

Unified Diff: chrome/browser/metrics/variations/variations_service.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
Index: chrome/browser/metrics/variations/variations_service.cc
diff --git a/chrome/browser/metrics/variations/variations_service.cc b/chrome/browser/metrics/variations/variations_service.cc
index 557d8b1d2bf08ff62a4a29b50e99513ae72aeb96..e1f9003b4949d1fc44a9a0ab4176ebaaecc7b2f3 100644
--- a/chrome/browser/metrics/variations/variations_service.cc
+++ b/chrome/browser/metrics/variations/variations_service.cc
@@ -67,15 +67,15 @@ const int64 kServerTimeResolutionMs = 1000;
// channel.
variations::Study_Channel GetChannelForVariations() {
switch (chrome::VersionInfo::GetChannel()) {
- case chrome::VersionInfo::CHANNEL_CANARY:
+ case version_info::Channel::CANARY:
return variations::Study_Channel_CANARY;
- case chrome::VersionInfo::CHANNEL_DEV:
+ case version_info::Channel::DEV:
return variations::Study_Channel_DEV;
- case chrome::VersionInfo::CHANNEL_BETA:
+ case version_info::Channel::BETA:
return variations::Study_Channel_BETA;
- case chrome::VersionInfo::CHANNEL_STABLE:
+ case version_info::Channel::STABLE:
return variations::Study_Channel_STABLE;
- case chrome::VersionInfo::CHANNEL_UNKNOWN:
+ case version_info::Channel::UNKNOWN:
break;
}
const std::string forced_channel =
« no previous file with comments | « chrome/browser/metrics/thread_watcher.cc ('k') | chrome/browser/password_manager/chrome_password_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698