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

Unified Diff: chrome/common/chrome_version_info_android.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.cc ('k') | chrome/common/chrome_version_info_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_version_info_android.cc
diff --git a/chrome/common/chrome_version_info_android.cc b/chrome/common/chrome_version_info_android.cc
index cfca3da14a8a82070853d6e5bd4845de5bf8f3ed..bf30a6af90eaa402eec96d5fa3837f4b128a1613 100644
--- a/chrome/common/chrome_version_info_android.cc
+++ b/chrome/common/chrome_version_info_android.cc
@@ -13,32 +13,32 @@ namespace chrome {
// static
std::string VersionInfo::GetVersionStringModifier() {
switch (GetChannel()) {
- case CHANNEL_UNKNOWN: return "unknown";
- case CHANNEL_CANARY: return "canary";
- case CHANNEL_DEV: return "dev";
- case CHANNEL_BETA: return "beta";
- case CHANNEL_STABLE: return std::string();
+ case version_info::Channel::UNKNOWN: return "unknown";
+ case version_info::Channel::CANARY: return "canary";
+ case version_info::Channel::DEV: return "dev";
+ case version_info::Channel::BETA: return "beta";
+ case version_info::Channel::STABLE: return std::string();
}
- NOTREACHED() << "Unknown channel " << GetChannel();
+ NOTREACHED() << "Unknown channel " << static_cast<int>(GetChannel());
return std::string();
}
// static
-VersionInfo::Channel VersionInfo::GetChannel() {
+version_info::Channel VersionInfo::GetChannel() {
const base::android::BuildInfo* bi = base::android::BuildInfo::GetInstance();
DCHECK(bi && bi->package_name());
if (!strcmp(bi->package_name(), "com.android.chrome")
|| !strcmp(bi->package_name(), "com.chrome.work"))
- return CHANNEL_STABLE;
+ return version_info::Channel::STABLE;
if (!strcmp(bi->package_name(), "com.chrome.beta"))
- return CHANNEL_BETA;
+ return version_info::Channel::BETA;
if (!strcmp(bi->package_name(), "com.chrome.dev"))
- return CHANNEL_DEV;
+ return version_info::Channel::DEV;
if (!strcmp(bi->package_name(), "com.chrome.canary"))
- return CHANNEL_CANARY;
+ return version_info::Channel::CANARY;
- return CHANNEL_UNKNOWN;
+ return version_info::Channel::UNKNOWN;
}
} // namespace chrome
« no previous file with comments | « chrome/common/chrome_version_info.cc ('k') | chrome/common/chrome_version_info_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698