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

Unified Diff: chrome/browser/chrome_browser_main_posix.cc

Issue 8745015: Store the "browser autorestarted, last session must be restored" information in a preference. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix (browser_tests). Created 9 years 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/browser/browser_shutdown.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chrome_browser_main_posix.cc
diff --git a/chrome/browser/chrome_browser_main_posix.cc b/chrome/browser/chrome_browser_main_posix.cc
index 67e2371e18b00a2d109dcb99894677ed9fc48e8a..8ef704f7036299350e3ac8478a714b1ec3e90b23 100644
--- a/chrome/browser/chrome_browser_main_posix.cc
+++ b/chrome/browser/chrome_browser_main_posix.cc
@@ -140,7 +140,7 @@ void ShutdownDetector::ThreadMain() {
// On ChromeOS, exiting on signal should be always clean.
base::Closure task = base::Bind(&BrowserList::ExitCleanly);
#else
- base::Closure task = base::Bind(&BrowserList::AttemptExit);
+ base::Closure task = base::Bind(&BrowserList::AttemptExit, false);
#endif
if (!BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, task)) {
« no previous file with comments | « chrome/browser/browser_shutdown.cc ('k') | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698