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

Unified Diff: chrome/browser/browser_main.cc

Issue 6462024: Register Application Restart with Windows Restart Manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "Update comment." Created 9 years, 10 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
Index: chrome/browser/browser_main.cc
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
index 0819289a032c8b84e8c8c4134cd74e529e951512..2e8785b9e977726f5a9049ce48db395bf3c3686a 100644
--- a/chrome/browser/browser_main.cc
+++ b/chrome/browser/browser_main.cc
@@ -1517,6 +1517,10 @@ int BrowserMain(const MainFunctionParams& parameters) {
// testing against a bunch of special cases that are taken care early on.
PrepareRestartOnCrashEnviroment(parsed_command_line);
+#if defined(OS_WIN)
+ RegisterApplicationRestart(parsed_command_line);
Ben Goodger (Google) 2011/02/10 16:56:49 You might add a quick note here saying what this d
msw 2011/02/10 18:35:06 Done. Added your same comment from the function de
+#endif // OS_WIN
+
// Initialize and maintain network predictor module, which handles DNS
// pre-resolution, as well as TCP/IP connection pre-warming.
// This also registers an observer to discard data when closing incognito
@@ -1539,8 +1543,8 @@ int BrowserMain(const MainFunctionParams& parameters) {
// file thread to be run sometime later. If this is the first run we record
// the installation event.
RLZTracker::InitRlzDelayed(is_first_run, master_prefs.ping_delay);
-#endif
-#endif
+#endif // GOOGLE_CHROME_BUILD
+#endif // OS_WIN
// Configure modules that need access to resources.
net::NetModule::SetResourceProvider(chrome_common_net::NetResourceProvider);
@@ -1720,7 +1724,7 @@ int BrowserMain(const MainFunctionParams& parameters) {
parameters.ui_task->Run();
delete parameters.ui_task;
} else {
- // We are in regular browser boot sequence. Open initial stabs and enter
+ // We are in regular browser boot sequence. Open initial tabs and enter
// the main message loop.
if (browser_init.Start(parsed_command_line, FilePath(), profile,
&result_code)) {

Powered by Google App Engine
This is Rietveld 408576698