Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2346)

Unified Diff: chrome/app/chrome_exe_main_win.cc

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | chrome/browser/win/chrome_process_finder.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | chrome/browser/win/chrome_process_finder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698