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

Unified Diff: chrome/browser/ui/browser_navigator.cc

Issue 4647007: Fix navigation bugs, patch the right file, nuke an old file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge with trunk Created 10 years, 1 month 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/ui/browser_navigator.cc
diff --git a/chrome/browser/ui/browser_navigator.cc b/chrome/browser/ui/browser_navigator.cc
index f7bd4838ecf7e7d2e52ee85c3bd758f45e9b4ad5..ee4138af49c0d41e771e2dcad79a2047fa6a3018 100644
--- a/chrome/browser/ui/browser_navigator.cc
+++ b/chrome/browser/ui/browser_navigator.cc
@@ -180,17 +180,27 @@ void NormalizeDisposition(browser::NavigateParams* params) {
params->disposition = NEW_FOREGROUND_TAB;
}
- // Disposition trumps add types. ADD_SELECTED is a default, so we need to
- // remove it if disposition implies the tab is going to open in the
- // background.
- if (params->disposition == NEW_BACKGROUND_TAB)
- params->tabstrip_add_types &= ~TabStripModel::ADD_SELECTED;
-
- // Code that wants to open a new window typically expects it to be shown
- // automatically.
- if (params->disposition == NEW_WINDOW || params->disposition == NEW_POPUP) {
- params->show_window = true;
- params->tabstrip_add_types |= TabStripModel::ADD_SELECTED;
+ switch (params->disposition) {
+ case NEW_BACKGROUND_TAB:
+ // Disposition trumps add types. ADD_SELECTED is a default, so we need to
+ // remove it if disposition implies the tab is going to open in the
+ // background.
+ params->tabstrip_add_types &= ~TabStripModel::ADD_SELECTED;
+ break;
+
+ case NEW_WINDOW:
+ case NEW_POPUP:
+ // Code that wants to open a new window typically expects it to be shown
+ // automatically.
+ params->show_window = true;
+ // Fall-through.
+ case NEW_FOREGROUND_TAB:
+ case SINGLETON_TAB:
+ params->tabstrip_add_types |= TabStripModel::ADD_SELECTED;
+ break;
+
+ default:
+ break;
}
}
@@ -281,11 +291,18 @@ NavigateParams::~NavigateParams() {
}
void Navigate(NavigateParams* params) {
+ Browser* browser = params->browser;
params->browser = GetBrowserForDisposition(params);
if (!params->browser)
return;
// Navigate() must not return early after this point.
+ if (browser != params->browser &&
+ params->browser->tabstrip_model()->empty()) {
+ // A new window has been created. So it needs to be displayed.
+ params->show_window = true;
Ben Goodger (Google) 2010/11/17 15:57:50 Did you evaluate all cases relating to startup (in
sadrul 2010/11/17 17:02:23 I cannot honestly claim I covered all the places,
+ }
+
// Make sure the Browser is shown if params call for it.
ScopedBrowserDisplayer displayer(params);
« chrome/browser/ui/browser_navigator.h ('K') | « chrome/browser/ui/browser_navigator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698