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

Unified Diff: chrome/browser/sync/glue/chrome_report_unrecoverable_error.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/sync/about_sync_util.cc ('k') | chrome/browser/ui/app_list/app_list_service_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc
diff --git a/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc b/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc
index f87fd5fad448eddc23c0401b378753888a70f00a..b1e05f4c871069472e50ec4695a69c9517e4a935 100644
--- a/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc
+++ b/chrome/browser/sync/glue/chrome_report_unrecoverable_error.cc
@@ -13,9 +13,9 @@ namespace browser_sync {
void ChromeReportUnrecoverableError() {
// Only upload on canary/dev builds to avoid overwhelming crash server.
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- if (channel != chrome::VersionInfo::CHANNEL_CANARY &&
- channel != chrome::VersionInfo::CHANNEL_DEV) {
+ version_info::Channel channel = chrome::VersionInfo::GetChannel();
+ if (channel != version_info::Channel::CANARY &&
+ channel != version_info::Channel::DEV) {
return;
}
« no previous file with comments | « chrome/browser/sync/about_sync_util.cc ('k') | chrome/browser/ui/app_list/app_list_service_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698