HomeSort by relevance Sort by last modified time
    Searched defs:tabstrip (Results 1 - 6 of 6) sorted by null

  /external/chromium/chrome/browser/ui/touch/tabs/
tab_strip_factory.cc 19 // Ownership of this controller is given to a specific tabstrip when we
22 TouchTabStrip* tabstrip = new TouchTabStrip(tabstrip_controller); local
23 parent->AddChildView(tabstrip);
24 tabstrip_controller->InitFromModel(tabstrip);
25 return tabstrip;
  /external/chromium/chrome/browser/ui/views/tabs/
tab_strip_factory.cc 11 // This default implementation of CreateTabStrip creates a TabStrip or a
19 // Ownership of this controller is given to a specific tabstrip when we
22 BaseTabStrip* tabstrip = NULL; local
25 tabstrip = new SideTabStrip(tabstrip_controller);
27 tabstrip = new TabStrip(tabstrip_controller);
28 parent->AddChildView(tabstrip);
29 tabstrip_controller->InitFromModel(tabstrip);
30 return tabstrip;
  /external/chromium/chrome/browser/ui/views/frame/
browser_root_view.cc 31 if (tabstrip() && tabstrip()->IsVisible()) {
43 if (!tabstrip() || !tabstrip()->IsVisible())
59 tabstrip()->OnDragEntered(*mapped_event.get());
68 tabstrip()->OnDragEntered(*mapped_event.get());
71 return tabstrip()->OnDragUpdated(*mapped_event.get());
74 tabstrip()->OnDragExited();
82 tabstrip()->OnDragExited();
91 // do this as the TabStrip doesn't know about the autocomplete edit and need
139 AbstractTabStripView* BrowserRootView::tabstrip() const { function in class:BrowserRootView
    [all...]
browser_view.h 75 // including the TabStrip, toolbars, download shelves, the content area etc.
122 // Returns the preferred height of the TabStrip. Used to position the OTR
135 // Accessor for the TabStrip.
136 AbstractTabStripView* tabstrip() const { return tabstrip_; } function in class:BrowserView
144 // Returns true if the vertical tabstrip is in use.
413 // Initializes a new TabStrip for the browser view. This can be performed
415 // mode for the tabstrip changes from horizontal to vertical.
579 // The TabStrip.
  /external/chromium/chrome/browser/ui/gtk/
browser_window_gtk.h 153 TabStripGtk* tabstrip() const { return tabstrip_.get(); } function in class:BrowserWindowGtk
394 // in this window. (For example, a popup window might not support a tabstrip).
  /external/chromium/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc 31 // How far a drag must pull a tab out of the tabstrip in order to detach it.
77 // attached to the source tabstrip.
235 // Determine whether or not we have dragged over a compatible TabStrip in
245 // Make sure we're fully detached from whatever TabStrip we're attached to
311 TabStripGtk* other_tabstrip = browser->tabstrip();
319 TabStripGtk* tabstrip, const gfx::Point& screen_point) const {
321 // specified tabstrip...
323 gtk_util::GetWidgetScreenBounds(tabstrip->tabstrip_.get());
327 // the source TabStrip.
332 return tabstrip;
726 GtkWidget* tabstrip = source_tabstrip_->widget(); local
732 GtkWidget* tabstrip = source_tabstrip_->widget(); local
    [all...]

Completed in 650 milliseconds