Index: chrome/app/chrome_crash_reporter_client.cc |
diff --git a/chrome/app/chrome_crash_reporter_client.cc b/chrome/app/chrome_crash_reporter_client.cc |
index 067ab53ef926ce7d0cce29e5af3f1e367bc9f3e2..b0eba46d1f5af4e1751dfa0abf3be25e90fc98b2 100644 |
--- a/chrome/app/chrome_crash_reporter_client.cc |
+++ b/chrome/app/chrome_crash_reporter_client.cc |
@@ -33,7 +33,7 @@ |
#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS) |
#include "chrome/browser/crash_upload_list.h" |
-#include "chrome/common/chrome_version_info_values.h" |
+#include "components/version_info/version_info_values.h" |
#endif |
#if defined(OS_POSIX) |
@@ -322,7 +322,7 @@ bool ChromeCrashReporterClient::GetCollectStatsConsent() { |
bool is_guest_session = base::CommandLine::ForCurrentProcess()->HasSwitch( |
chromeos::switches::kGuestSession); |
bool is_stable_channel = |
- chrome::VersionInfo::GetChannel() == chrome::VersionInfo::CHANNEL_STABLE; |
+ chrome::VersionInfo::GetChannel() == version_info::Channel::STABLE; |
if (is_guest_session && is_stable_channel) |
return false; |