Home
last modified time | relevance | path

Searched refs:selectTab (Results 1 – 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DSourcesNavigator.js60 this._tabbedPane.selectTab(WebInspector.SourcesNavigator.SourcesTab);
122 this._tabbedPane.selectTab(WebInspector.SourcesNavigator.ContentScriptsTab);
124 this._tabbedPane.selectTab(WebInspector.SourcesNavigator.SourcesTab);
DNetworkItemView.js83 if (!this.selectTab(tabId)) {
85 this.selectTab("headers");
DTabbedPane.js160 this.selectTab(tab.id, userGesture);
184 this.selectTab(this._tabsHistory[0].id, false);
253 selectTab: function(id, userGesture) method in WebInspector.TabbedPane
481 this.selectTab(selectedOption.tab.id, true);
834 … tabElement.selectTabForTest = this._tabbedPane.selectTab.bind(this._tabbedPane, this.id, true);
885 this._tabbedPane.selectTab(this.id, true);
DDrawer.js151 this._tabbedPane.selectTab(id, true);
171 this._tabbedPane.selectTab(id, true);
DTabbedEditorContainer.js179 this._tabbedPane.selectTab(tabId, userGesture);
214 this._tabbedPane.selectTab(nextTabId, true);
237 this._tabbedPane.selectTab(dirtyTabs[0], true);
DSidebarPane.js197 pane.setExpandCallback(this.selectTab.bind(this, title));
DInspectorView.js132 this._tabbedPane.selectTab(panelName);
197 this._tabbedPane.selectTab(x.name);
DCSSNamedFlowCollectionsView.js301 if (!this._tabbedPane.selectTab(flowHash)) {
306 this._tabbedPane.selectTab(flowHash);
DLayersPanel.js131 this._tabbedPane.selectTab(WebInspector.LayersPanel.DetailsViewTabs.Profiler);
DSettingsScreen.js60 this.selectTab(this._lastSelectedTabSetting.get());
106 selectTab: function(tabId) method in WebInspector.SettingsScreen
108 this._tabbedPane.selectTab(tabId);
767 this._settingsScreen.selectTab(tabId);
DOverridesView.js52 this._tabbedPane.selectTab(this._lastSelectedTabSetting.get());
/external/chromium/chrome/browser/ui/cocoa/tabs/
Dtab_controller_target.h15 - (void)selectTab:(id)sender;
Dtab_controller_unittest.mm33 - (void)selectTab:(id)sender {
172 [controller setAction:@selector(selectTab:)];
174 EXPECT_EQ(@selector(selectTab:), [controller action]);
Dtab_strip_controller.mm589 [controller setAction:@selector(selectTab:)];
695 - (void)selectTab:(id)sender {
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
Dtab_controller_target.h16 - (void)selectTab:(id)sender;
Dtab_controller.h104 - (void)selectTab:(id)sender;
Dtab_controller_unittest.mm47 - (void)selectTab:(id)sender {
316 [controller setAction:@selector(selectTab:)];
318 EXPECT_EQ(@selector(selectTab:), [controller action]);
Dtab_controller.mm188 - (void)selectTab:(id)sender {
Dtab_strip_drag_controller.mm131 [tab selectTab:self];
Dtab_view.mm246 [controller_ selectTab:self];
Dtab_strip_controller.mm668 [controller setAction:@selector(selectTab:)];
801 - (void)selectTab:(id)sender {
/external/chromium_org/chrome/browser/resources/inspect/
Dinspect.js34 tabHeader.addEventListener('click', selectTab.bind(null, tabContent.id));
38 selectTab(selectedTabName);
43 function selectTab(id) { function