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

Unified Diff: chrome/browser/sxs_linux.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/sxs_linux.cc
diff --git a/chrome/browser/sxs_linux.cc b/chrome/browser/sxs_linux.cc
index 5ab67ae6302442bdc4dcd28b04e6de65c538b4f7..bd609ef94aa846d9602bae0cd4f84dc35d4af99e 100644
--- a/chrome/browser/sxs_linux.cc
+++ b/chrome/browser/sxs_linux.cc
@@ -26,10 +26,10 @@ const char kChannelsFileName[] = "Channels";
std::string GetChannelMarkForThisExecutable() {
std::string product_channel_name;
- chrome::VersionInfo::Channel product_channel(
+ version_info::Channel product_channel(
chrome::VersionInfo::GetChannel());
switch (product_channel) {
- case chrome::VersionInfo::CHANNEL_UNKNOWN: {
+ case version_info::Channel::UNKNOWN: {
// Add the channel mark even for Chromium builds (which do not have
// channel) to better handle possibility of users using Chromium builds
// with their Google Chrome profiles. Include version string modifier
@@ -41,16 +41,16 @@ std::string GetChannelMarkForThisExecutable() {
product_channel_name = "unknown (" + version_string_modifier + ")";
break;
}
- case chrome::VersionInfo::CHANNEL_CANARY:
+ case version_info::Channel::CANARY:
product_channel_name = "canary";
break;
- case chrome::VersionInfo::CHANNEL_DEV:
+ case version_info::Channel::DEV:
product_channel_name = "dev";
break;
- case chrome::VersionInfo::CHANNEL_BETA:
+ case version_info::Channel::BETA:
product_channel_name = "beta";
break;
- case chrome::VersionInfo::CHANNEL_STABLE:
+ case version_info::Channel::STABLE:
product_channel_name = "stable";
break;
// Rely on -Wswitch compiler warning to detect unhandled enum values.
« no previous file with comments | « chrome/browser/supervised_user/supervised_user_service_unittest.cc ('k') | chrome/browser/sync/about_sync_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698