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

Unified Diff: chrome/browser/browser.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
« no previous file with comments | « no previous file | chrome/browser/browser_browsertest.cc » ('j') | chrome/browser/browser_init.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser.cc
===================================================================
--- chrome/browser/browser.cc (revision 42688)
+++ chrome/browser/browser.cc (working copy)
@@ -1007,7 +1007,12 @@
void Browser::NewWindow() {
UserMetrics::RecordAction(UserMetricsAction("NewWindow"), profile_);
- Browser::OpenEmptyWindow(profile_->GetOriginalProfile());
+ SessionService* session_service =
+ profile_->GetOriginalProfile()->GetSessionService();
+ if (!session_service ||
+ !session_service->RestoreIfNecessary(std::vector<GURL>())) {
+ Browser::OpenEmptyWindow(profile_->GetOriginalProfile());
+ }
}
void Browser::NewIncognitoWindow() {
« no previous file with comments | « no previous file | chrome/browser/browser_browsertest.cc » ('j') | chrome/browser/browser_init.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698