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

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: Add fix for 62545 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
« no previous file with comments | « chrome/browser/ui/browser_navigator.h ('k') | chrome/browser/ui/browser_navigator_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser_navigator.cc
diff --git a/chrome/browser/ui/browser_navigator.cc b/chrome/browser/ui/browser_navigator.cc
index 54edd144c7823c7e45588c0e5ad516685f562ace..7f2faa114347ca7a73a0dafb3f0e633256b6bb5a 100644
--- a/chrome/browser/ui/browser_navigator.cc
+++ b/chrome/browser/ui/browser_navigator.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/browser_navigator.h"
+#include "chrome/browser/ui/browser_navigator.h"
#include "base/command_line.h"
#include "chrome/browser/browser.h"
@@ -180,17 +180,26 @@ 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:
+ case NEW_FOREGROUND_TAB:
Ben Goodger (Google) 2010/11/10 18:43:38 What are the other implications of this? There are
sadrul 2010/11/10 18:50:31 Are there tests/scenarios I could try to reproduce
+ case SINGLETON_TAB:
+ // Code that wants to open a new window typically expects it to be shown
+ // automatically.
+ params->show_window = true;
+ params->tabstrip_add_types |= TabStripModel::ADD_SELECTED;
+ break;
+
+ default:
sky 2010/11/10 19:18:47 Can you deal with OFF_THE_RECORD mode too? I was g
sadrul 2010/11/10 19:25:08 I think you are referring to bug 62022? In which c
sky 2010/11/10 19:30:12 2010/11/10 19:25:08, sadrul wrote:
+ break;
}
}
« no previous file with comments | « chrome/browser/ui/browser_navigator.h ('k') | chrome/browser/ui/browser_navigator_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698