Index: chrome/browser/history/chrome_history_backend_client.cc |
diff --git a/chrome/browser/history/chrome_history_backend_client.cc b/chrome/browser/history/chrome_history_backend_client.cc |
index 20448a04799c3c78af25c4302e8094c3185de1bc..44fe9eda2735fdde4f6509a42e8e9900d9b648a7 100644 |
--- a/chrome/browser/history/chrome_history_backend_client.cc |
+++ b/chrome/browser/history/chrome_history_backend_client.cc |
@@ -64,9 +64,9 @@ bool ChromeHistoryBackendClient::ShouldReportDatabaseError() { |
// TODO(shess): For now, don't report on beta or stable so as not to |
// overwhelm the crash server. Once the big fish are fried, |
// consider reporting at a reduced rate on the bigger channels. |
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel(); |
- return channel != chrome::VersionInfo::CHANNEL_STABLE && |
- channel != chrome::VersionInfo::CHANNEL_BETA; |
+ version_info::Channel channel = chrome::VersionInfo::GetChannel(); |
+ return channel != version_info::Channel::STABLE && |
+ channel != version_info::Channel::BETA; |
} |
#if defined(OS_ANDROID) |