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

Unified Diff: chrome/app/main_dll_loader_win.cc

Issue 2422643002: Windows install_static refactor. (Closed)
Patch Set: sync to position 431863 Created 4 years, 1 month 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
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 f3a2b57a993757a05c6dafd6736e7feaa5e3e2ac..afab6bb49ebd45baf6ee0925d6387dd90fb12cce 100644
--- a/chrome/app/main_dll_loader_win.cc
+++ b/chrome/app/main_dll_loader_win.cc
@@ -154,10 +154,10 @@ int MainDllLoader::Launch(HINSTANCE instance,
ChromeWatcherMainFunction watcher_main =
reinterpret_cast<ChromeWatcherMainFunction>(
::GetProcAddress(watcher_dll, kChromeWatcherDLLEntrypoint));
- return watcher_main(
- chrome::GetBrowserExitCodesRegistryPath().c_str(),
- parent_process.Take(), main_thread_id, on_initialized_event.Take(),
- watcher_data_directory.value().c_str(), channel_name.c_str());
+ return watcher_main(chrome::GetBrowserExitCodesRegistryPath().c_str(),
+ parent_process.Take(), main_thread_id,
+ on_initialized_event.Take(),
+ watcher_data_directory.value().c_str());
}
// Initialize the sandbox services.

Powered by Google App Engine
This is Rietveld 408576698