Chromium Code Reviews| Index: chrome/app/main_dll_loader_win.cc |
| diff --git a/chrome/app/main_dll_loader_win.cc b/chrome/app/main_dll_loader_win.cc |
| index 8d8f978bd3f3702f464d8a5c1e0ed34cd66ee6a8..41a1430ee3870377bdde5017556a4de9f32210f0 100644 |
| --- a/chrome/app/main_dll_loader_win.cc |
| +++ b/chrome/app/main_dll_loader_win.cc |
| @@ -33,6 +33,7 @@ |
| #include "chrome/app/kasko_client.h" |
| #include "chrome/chrome_watcher/chrome_watcher_main_api.h" |
| #include "chrome/common/chrome_constants.h" |
| +#include "chrome/common/chrome_constants_util_win.h" |
| #include "chrome/common/chrome_paths.h" |
| #include "chrome/common/chrome_result_codes.h" |
|
gab
2016/03/09 20:29:35
Interesting, another uncaught violation: "chrome/c
|
| #include "chrome/common/chrome_switches.h" |
| @@ -164,8 +165,8 @@ int MainDllLoader::Launch(HINSTANCE instance) { |
| reinterpret_cast<ChromeWatcherMainFunction>( |
| ::GetProcAddress(watcher_dll, kChromeWatcherDLLEntrypoint)); |
| return watcher_main( |
| - chrome::kBrowserExitCodesRegistryPath, parent_process.Take(), |
| - main_thread_id, on_initialized_event.Take(), |
| + chrome::GetBrowserExitCodesRegistryPath().c_str(), |
| + parent_process.Take(), main_thread_id, on_initialized_event.Take(), |
| watcher_data_directory.value().c_str(), channel_name.c_str()); |
| } |