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; |
} |
} |