| 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 44fe9eda2735fdde4f6509a42e8e9900d9b648a7..1d0e841c315f2015a73b917bff1ba169bdb90b1b 100644
 | 
| --- a/chrome/browser/history/chrome_history_backend_client.cc
 | 
| +++ b/chrome/browser/history/chrome_history_backend_client.cc
 | 
| @@ -4,8 +4,9 @@
 | 
|  
 | 
|  #include "chrome/browser/history/chrome_history_backend_client.h"
 | 
|  
 | 
| -#include "chrome/common/chrome_version_info.h"
 | 
| +#include "chrome/common/channel_info.h"
 | 
|  #include "components/bookmarks/browser/bookmark_model.h"
 | 
| +#include "components/version_info/version_info.h"
 | 
|  #include "url/gurl.h"
 | 
|  
 | 
|  #if defined(OS_ANDROID)
 | 
| @@ -64,7 +65,7 @@ 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.
 | 
| -  version_info::Channel channel = chrome::VersionInfo::GetChannel();
 | 
| +  version_info::Channel channel = chrome::GetChannel();
 | 
|    return channel != version_info::Channel::STABLE &&
 | 
|           channel != version_info::Channel::BETA;
 | 
|  }
 | 
| 
 |