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

Unified Diff: chrome/common/metrics/version_utils.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/metrics/version_utils.h ('k') | chrome/common/pepper_permission_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/metrics/version_utils.cc
diff --git a/chrome/common/metrics/version_utils.cc b/chrome/common/metrics/version_utils.cc
index 31e6f9cf1e5dd372133651c13c807dced0be90e6..284608372d96fa34abc48cdd6cc180bb34b61adf 100644
--- a/chrome/common/metrics/version_utils.cc
+++ b/chrome/common/metrics/version_utils.cc
@@ -5,7 +5,7 @@
#include "chrome/common/metrics/version_utils.h"
#include "base/logging.h"
-#include "chrome/common/chrome_version_info_values.h"
+#include "components/version_info/version_info_values.h"
namespace metrics {
@@ -20,17 +20,17 @@ std::string GetVersionString() {
}
SystemProfileProto::Channel AsProtobufChannel(
- chrome::VersionInfo::Channel channel) {
+ version_info::Channel channel) {
switch (channel) {
- case chrome::VersionInfo::CHANNEL_UNKNOWN:
+ case version_info::Channel::UNKNOWN:
return SystemProfileProto::CHANNEL_UNKNOWN;
- case chrome::VersionInfo::CHANNEL_CANARY:
+ case version_info::Channel::CANARY:
return SystemProfileProto::CHANNEL_CANARY;
- case chrome::VersionInfo::CHANNEL_DEV:
+ case version_info::Channel::DEV:
return SystemProfileProto::CHANNEL_DEV;
- case chrome::VersionInfo::CHANNEL_BETA:
+ case version_info::Channel::BETA:
return SystemProfileProto::CHANNEL_BETA;
- case chrome::VersionInfo::CHANNEL_STABLE:
+ case version_info::Channel::STABLE:
return SystemProfileProto::CHANNEL_STABLE;
}
NOTREACHED();
« no previous file with comments | « chrome/common/metrics/version_utils.h ('k') | chrome/common/pepper_permission_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698