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

Unified Diff: chrome/common/chrome_version_info_posix.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/common/chrome_version_info_mac.mm ('k') | chrome/common/chrome_version_info_values.h.version » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_version_info_posix.cc
diff --git a/chrome/common/chrome_version_info_posix.cc b/chrome/common/chrome_version_info_posix.cc
index 9f972698f095611101fcc66a9f91f3ef5a81a324..c39e6514d016ae6f7085a1acc4a95d3abc6d7d90 100644
--- a/chrome/common/chrome_version_info_posix.cc
+++ b/chrome/common/chrome_version_info_posix.cc
@@ -14,8 +14,8 @@ namespace {
// Helper function to return both the channel enum and modifier string.
// Implements both together to prevent their behavior from diverging, which has
// happened multiple times in the past.
-VersionInfo::Channel GetChannelImpl(std::string* modifier_out) {
- VersionInfo::Channel channel = VersionInfo::CHANNEL_UNKNOWN;
+version_info::Channel GetChannelImpl(std::string* modifier_out) {
+ version_info::Channel channel = version_info::Channel::UNKNOWN;
std::string modifier;
char* env = getenv("CHROME_VERSION_EXTRA");
@@ -27,12 +27,12 @@ VersionInfo::Channel GetChannelImpl(std::string* modifier_out) {
if (modifier == "unstable") // linux version of "dev"
modifier = "dev";
if (modifier == "stable") {
- channel = VersionInfo::CHANNEL_STABLE;
+ channel = version_info::Channel::STABLE;
modifier = "";
} else if (modifier == "dev") {
- channel = VersionInfo::CHANNEL_DEV;
+ channel = version_info::Channel::DEV;
} else if (modifier == "beta") {
- channel = VersionInfo::CHANNEL_BETA;
+ channel = version_info::Channel::BETA;
} else {
modifier = "unknown";
}
@@ -54,7 +54,7 @@ std::string VersionInfo::GetVersionStringModifier() {
}
// static
-VersionInfo::Channel VersionInfo::GetChannel() {
+version_info::Channel VersionInfo::GetChannel() {
return GetChannelImpl(NULL);
}
« no previous file with comments | « chrome/common/chrome_version_info_mac.mm ('k') | chrome/common/chrome_version_info_values.h.version » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698