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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/environment_data_collection.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/browser/policy/policy_browsertest.cc ('k') | chrome/browser/shell_integration.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/safe_browsing/incident_reporting/environment_data_collection.cc
diff --git a/chrome/browser/safe_browsing/incident_reporting/environment_data_collection.cc b/chrome/browser/safe_browsing/incident_reporting/environment_data_collection.cc
index 0075ce010dd25eb78bd45aa76718167d747e5a47..58843b355e1eb0685d0f3b233b1e0d7670ffc9d9 100644
--- a/chrome/browser/safe_browsing/incident_reporting/environment_data_collection.cc
+++ b/chrome/browser/safe_browsing/incident_reporting/environment_data_collection.cc
@@ -21,17 +21,16 @@ void CollectPlatformProcessData(
namespace {
ClientIncidentReport_EnvironmentData_Process_Channel MapChannelToProtobuf(
- chrome::VersionInfo::Channel channel) {
- typedef chrome::VersionInfo VersionInfo;
+ version_info::Channel channel) {
typedef ClientIncidentReport_EnvironmentData_Process Process;
switch (channel) {
- case VersionInfo::CHANNEL_CANARY:
+ case version_info::Channel::CANARY:
return Process::CHANNEL_CANARY;
- case VersionInfo::CHANNEL_DEV:
+ case version_info::Channel::DEV:
return Process::CHANNEL_DEV;
- case VersionInfo::CHANNEL_BETA:
+ case version_info::Channel::BETA:
return Process::CHANNEL_BETA;
- case VersionInfo::CHANNEL_STABLE:
+ case version_info::Channel::STABLE:
return Process::CHANNEL_STABLE;
default:
return Process::CHANNEL_UNKNOWN;
« no previous file with comments | « chrome/browser/policy/policy_browsertest.cc ('k') | chrome/browser/shell_integration.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698