| 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;
|
| }
|
|
|
|
|