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

Unified Diff: chrome/app/chrome_exe_main_gtk.cc

Issue 1633021: Detect new instance of the browser when running in the background in persiste... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 8 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 | « chrome/app/chrome_exe_main.cc ('k') | chrome/app/client_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_exe_main_gtk.cc
===================================================================
--- chrome/app/chrome_exe_main_gtk.cc (revision 45984)
+++ chrome/app/chrome_exe_main_gtk.cc (working copy)
@@ -4,6 +4,7 @@
#include "base/at_exit.h"
#include "base/process_util.h"
+#include "chrome/browser/first_run.h"
// The entry point for all invocations of Chromium, browser and renderer. On
// windows, this does nothing but load chrome.dll and invoke its entry point in
@@ -44,5 +45,11 @@
// keep it.
// base::AtExitManager exit_manager;
- return ChromeMain(argc, argv);
+ int return_code = ChromeMain(argc, argv);
+
+ // Launch a new instance if we're shutting down because we detected an
+ // upgrade in the persistent mode.
+ Upgrade::RelaunchChromeBrowserWithNewCommandLineIfNeeded();
+
+ return return_code;
}
« no previous file with comments | « chrome/app/chrome_exe_main.cc ('k') | chrome/app/client_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698