Index: chrome/app/chrome_exe_main_win.cc |
diff --git a/chrome/app/chrome_exe_main_win.cc b/chrome/app/chrome_exe_main_win.cc |
index 3c6e9798fb78c8967ab34ea3d2361ec01f6f7050..dc9389fd941ea15f06c06a82b191e72ddbe856c5 100644 |
--- a/chrome/app/chrome_exe_main_win.cc |
+++ b/chrome/app/chrome_exe_main_win.cc |
@@ -25,8 +25,8 @@ |
#include "base/win/windows_version.h" |
#include "chrome/app/chrome_crash_reporter_client_win.h" |
#include "chrome/app/main_dll_loader_win.h" |
-#include "chrome/browser/chrome_process_finder_win.h" |
#include "chrome/browser/policy/policy_path_parser.h" |
+#include "chrome/browser/win/chrome_process_finder.h" |
#include "chrome/common/chrome_paths_internal.h" |
#include "chrome/common/chrome_switches.h" |
#include "chrome/installer/util/browser_distribution.h" |
@@ -87,11 +87,11 @@ bool AttemptFastNotify(const base::CommandLine& command_line) { |
return false; |
policy::path_parser::CheckUserDataDirPolicy(&user_data_dir); |
- HWND chrome = chrome::FindRunningChromeWindow(user_data_dir); |
+ HWND chrome = chrome::win::FindRunningChromeWindow(user_data_dir); |
if (!chrome) |
return false; |
- return chrome::AttemptToNotifyRunningChrome(chrome, true) == |
- chrome::NOTIFY_SUCCESS; |
+ return chrome::win::AttemptToNotifyRunningChrome(chrome, true) == |
+ chrome::win::NOTIFY_SUCCESS; |
} |
// Win8.1 supports monitor-specific DPI scaling. |