Index: chrome/app/close_handle_hook_win.cc |
diff --git a/chrome/app/close_handle_hook_win.cc b/chrome/app/close_handle_hook_win.cc |
index fca2e2f8aa857e6139a543210a2e28b4afd22cc9..44b682c4b8a84ff597d4bd586db2a44782fd8dd5 100644 |
--- a/chrome/app/close_handle_hook_win.cc |
+++ b/chrome/app/close_handle_hook_win.cc |
@@ -14,7 +14,8 @@ |
#include "base/win/iat_patch_function.h" |
#include "base/win/pe_image.h" |
#include "base/win/scoped_handle.h" |
-#include "chrome/common/chrome_version_info.h" |
+#include "chrome/common/channel_info.h" |
+#include "components/version_info/version_info.h" |
namespace { |
@@ -184,7 +185,7 @@ bool UseHooks() { |
#if defined(ARCH_CPU_X86_64) |
return false; |
#elif defined(NDEBUG) |
- version_info::Channel channel = chrome::VersionInfo::GetChannel(); |
+ version_info::Channel channel = chrome::GetChannel(); |
if (channel == version_info::Channel::CANARY || |
channel == version_info::Channel::DEV || |
channel == version_info::Channel::UNKNOWN) { |