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

Unified Diff: chrome/browser/sessions/session_service.cc

Issue 1371002: Fixes bug where triggering session restore while the browser was... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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/sessions/session_service.cc
===================================================================
--- chrome/browser/sessions/session_service.cc (revision 42688)
+++ chrome/browser/sessions/session_service.cc (working copy)
@@ -145,6 +145,10 @@
Save();
}
+bool SessionService::RestoreIfNecessary(const std::vector<GURL>& urls_to_open) {
+ return RestoreIfNecessary(urls_to_open, NULL);
+}
+
void SessionService::ResetFromCurrentBrowsers() {
ScheduleReset();
}
@@ -439,6 +443,34 @@
NotificationService::AllSources());
}
+bool SessionService::RestoreIfNecessary(const std::vector<GURL>& urls_to_open,
+ Browser* browser) {
+ if (!has_open_trackable_browsers_ && !BrowserInit::InProcessStartup() &&
+ !SessionRestore::IsRestoring()
+#if defined(OS_MACOSX)
+ // OSX has a fairly different idea of application lifetime than the
+ // other platforms. We need to check that we aren't opening a window
+ // from the dock or the menubar.
+ && !app_controller_mac::IsOpeningNewWindow()
+#endif
+ ) {
+ // We're going from no tabbed browsers to a tabbed browser (and not in
+ // process startup), restore the last session.
+ if (move_on_new_browser_) {
+ // Make the current session the last.
+ MoveCurrentSessionToLastSession();
+ move_on_new_browser_ = false;
+ }
+ SessionStartupPref pref = SessionStartupPref::GetStartupPref(profile());
+ if (pref.type == SessionStartupPref::LAST) {
+ SessionRestore::RestoreSession(
+ profile(), browser, false, browser ? false : true, urls_to_open);
+ return true;
+ }
+ }
+ return false;
+}
+
void SessionService::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
@@ -451,27 +483,7 @@
return;
}
- if (!has_open_trackable_browsers_ && !BrowserInit::InProcessStartup()
-#if defined(OS_MACOSX)
- // OSX has a fairly different idea of application lifetime than the
- // other platforms. We need to check that we aren't opening a window
- // from the dock or the menubar.
- && !app_controller_mac::IsOpeningNewWindow()
-#endif
- ) {
- // We're going from no tabbed browsers to a tabbed browser (and not in
- // process startup), restore the last session.
- if (move_on_new_browser_) {
- // Make the current session the last.
- MoveCurrentSessionToLastSession();
- move_on_new_browser_ = false;
- }
- SessionStartupPref pref = SessionStartupPref::GetStartupPref(profile());
- if (pref.type == SessionStartupPref::LAST) {
- SessionRestore::RestoreSession(
- profile(), browser, false, false, std::vector<GURL>());
- }
- }
+ RestoreIfNecessary(std::vector<GURL>(), browser);
SetWindowType(browser->session_id(), browser->type());
break;
}

Powered by Google App Engine
This is Rietveld 408576698