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

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

Issue 4145013: DOMUI: Use ShowSingletonTab to open the settings tab. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment fix. 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 | « no previous file | chrome/browser/ui/browser_navigator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index 1089e42020db2b3ef24ca3c2ad4e86152908494d..afa17524ad5c2aa050503585ef7d68e6c7f81d51 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -1761,28 +1761,11 @@ void Browser::ShowBrokenPageTab(TabContents* contents) {
void Browser::ShowOptionsTab(const std::string& sub_page) {
GURL url(chrome::kChromeUISettingsURL + sub_page);
-
- // See if there is already an options tab open that we can use.
- TabStripModel* model = tab_handler_->GetTabStripModel();
- for (int i = 0; i < model->count(); i++) {
- TabContents* tc = model->GetTabContentsAt(i);
- const GURL& tab_url = tc->GetURL();
-
- if (tab_url.scheme() == url.scheme() && tab_url.host() == url.host()) {
- // We found an existing options tab, load the URL in this tab. (Note:
- // this may cause us to unnecessarily reload the same page. We can't
- // really detect that unless the options page is permitted to change the
- // URL in the address bar, but security policy doesn't allow that.
- browser::NavigateParams params(this, url, PageTransition::GENERATED);
- params.source_contents = tc;
- browser::Navigate(&params);
- model->SelectTabContentsAt(i, false);
- return;
- }
- }
-
- // No options tab found, so create a new one.
- AddSelectedTabWithURL(url, PageTransition::AUTO_BOOKMARK);
+ browser::NavigateParams params(this, url, PageTransition::AUTO_BOOKMARK);
+ params.disposition = SINGLETON_TAB;
+ params.show_window = true;
+ params.ignore_path = true;
+ browser::Navigate(&params);
Ben Goodger (Google) 2010/11/17 00:20:45 How about changing Browser::ShowSingletonTab() to
James Hawkins 2010/11/17 00:31:16 Done.
}
void Browser::OpenClearBrowsingDataDialog() {
« no previous file with comments | « no previous file | chrome/browser/ui/browser_navigator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698