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

Side by Side Diff: chrome/browser/gtk/tabs/tab_strip_gtk.cc

Issue 4655002: Don't show tabbed options page in OTR browser window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pkasting nits 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/gtk/tabs/tab_strip_gtk.h" 5 #include "chrome/browser/gtk/tabs/tab_strip_gtk.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "app/gtk_dnd_util.h" 9 #include "app/gtk_dnd_util.h"
10 #include "app/resource_bundle.h" 10 #include "app/resource_bundle.h"
11 #include "app/slide_animation.h" 11 #include "app/slide_animation.h"
12 #include "base/i18n/rtl.h" 12 #include "base/i18n/rtl.h"
13 #include "base/string_util.h" 13 #include "base/string_util.h"
14 #include "chrome/browser/autocomplete/autocomplete.h" 14 #include "chrome/browser/autocomplete/autocomplete.h"
15 #include "chrome/browser/browser.h"
15 #include "chrome/browser/gtk/browser_window_gtk.h" 16 #include "chrome/browser/gtk/browser_window_gtk.h"
16 #include "chrome/browser/gtk/custom_button.h" 17 #include "chrome/browser/gtk/custom_button.h"
17 #include "chrome/browser/gtk/gtk_theme_provider.h" 18 #include "chrome/browser/gtk/gtk_theme_provider.h"
18 #include "chrome/browser/gtk/gtk_util.h" 19 #include "chrome/browser/gtk/gtk_util.h"
19 #include "chrome/browser/gtk/tabs/dragged_tab_controller_gtk.h" 20 #include "chrome/browser/gtk/tabs/dragged_tab_controller_gtk.h"
20 #include "chrome/browser/profile.h" 21 #include "chrome/browser/profile.h"
21 #include "chrome/browser/tab_contents/tab_contents.h" 22 #include "chrome/browser/tab_contents/tab_contents.h"
22 #include "chrome/browser/tabs/tab_strip_model_delegate.h" 23 #include "chrome/browser/tabs/tab_strip_model_delegate.h"
23 #include "chrome/browser/themes/browser_theme_provider.h" 24 #include "chrome/browser/themes/browser_theme_provider.h"
24 #include "chrome/common/notification_service.h" 25 #include "chrome/common/notification_service.h"
(...skipping 1584 matching lines...) Expand 10 before | Expand all | Expand 10 after
1609 1610
1610 std::string url_string(reinterpret_cast<char*>(data)); 1611 std::string url_string(reinterpret_cast<char*>(data));
1611 GURL url(url_string.substr(0, url_string.find_first_of('\n'))); 1612 GURL url(url_string.substr(0, url_string.find_first_of('\n')));
1612 if (!url.is_valid()) 1613 if (!url.is_valid())
1613 return false; 1614 return false;
1614 1615
1615 if (drop_before) { 1616 if (drop_before) {
1616 // Insert a new tab. 1617 // Insert a new tab.
1617 TabContents* contents = 1618 TabContents* contents =
1618 model_->delegate()->CreateTabContentsForURL( 1619 model_->delegate()->CreateTabContentsForURL(
1619 url, GURL(), model_->profile(), PageTransition::TYPED, false, 1620 url, GURL(), model_->profile(), PageTransition::LINK, false,
1620 NULL); 1621 NULL);
1621 model_->AddTabContents(contents, drop_index, PageTransition::GENERATED, 1622 model_->AddTabContents(contents, drop_index, PageTransition::GENERATED,
1622 TabStripModel::ADD_SELECTED); 1623 TabStripModel::ADD_SELECTED);
1623 } else { 1624 } else {
1624 model_->GetTabContentsAt(drop_index)->controller().LoadURL( 1625 model_->GetTabContentsAt(drop_index)->controller().LoadURL(
1625 url, GURL(), PageTransition::GENERATED); 1626 url, GURL(), PageTransition::GENERATED);
1626 model_->SelectTabContentsAt(drop_index, true); 1627 model_->SelectTabContentsAt(drop_index, true);
1627 } 1628 }
1628 1629
1629 return true; 1630 return true;
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1967 case 1: 1968 case 1:
1968 model_->delegate()->AddBlankTab(true); 1969 model_->delegate()->AddBlankTab(true);
1969 break; 1970 break;
1970 case 2: { 1971 case 2: {
1971 // On middle-click, try to parse the PRIMARY selection as a URL and load 1972 // On middle-click, try to parse the PRIMARY selection as a URL and load
1972 // it instead of creating a blank page. 1973 // it instead of creating a blank page.
1973 GURL url; 1974 GURL url;
1974 if (!gtk_util::URLFromPrimarySelection(model_->profile(), &url)) 1975 if (!gtk_util::URLFromPrimarySelection(model_->profile(), &url))
1975 return; 1976 return;
1976 1977
1977 TabContents* contents = 1978 Browser* browser = window_->browser();
1978 model_->delegate()->CreateTabContentsForURL( 1979 DCHECK(browser);
1979 url, 1980 browser->AddSelectedTabWithURL(url, PageTransition::TYPED);
1980 GURL(), // referrer
1981 model_->profile(),
1982 PageTransition::TYPED,
1983 false, // defer_load
1984 NULL); // instance
1985 model_->AddTabContents(
1986 contents,
1987 -1, // index
1988 PageTransition::TYPED,
1989 TabStripModel::ADD_SELECTED);
1990 break; 1981 break;
1991 } 1982 }
1992 default: 1983 default:
1993 NOTREACHED() << "Got click on new tab button with unhandled mouse " 1984 NOTREACHED() << "Got click on new tab button with unhandled mouse "
1994 << "button " << mouse_button; 1985 << "button " << mouse_button;
1995 } 1986 }
1996 } 1987 }
1997 1988
1998 void TabStripGtk::SetTabBounds(TabGtk* tab, const gfx::Rect& bounds) { 1989 void TabStripGtk::SetTabBounds(TabGtk* tab, const gfx::Rect& bounds) {
1999 gfx::Rect bds = bounds; 1990 gfx::Rect bds = bounds;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
2035 2026
2036 // Let the middle mouse button initiate clicks as well. 2027 // Let the middle mouse button initiate clicks as well.
2037 gtk_util::SetButtonTriggersNavigation(button->widget()); 2028 gtk_util::SetButtonTriggersNavigation(button->widget());
2038 g_signal_connect(button->widget(), "clicked", 2029 g_signal_connect(button->widget(), "clicked",
2039 G_CALLBACK(OnNewTabClickedThunk), this); 2030 G_CALLBACK(OnNewTabClickedThunk), this);
2040 GTK_WIDGET_UNSET_FLAGS(button->widget(), GTK_CAN_FOCUS); 2031 GTK_WIDGET_UNSET_FLAGS(button->widget(), GTK_CAN_FOCUS);
2041 gtk_fixed_put(GTK_FIXED(tabstrip_.get()), button->widget(), 0, 0); 2032 gtk_fixed_put(GTK_FIXED(tabstrip_.get()), button->widget(), 0, 0);
2042 2033
2043 return button; 2034 return button;
2044 } 2035 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698