Home
last modified time | relevance | path

Searched refs:tabId (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/inspector/front-end/
DNetworkItemView.js78 _selectTab: function(tabId) argument
80 if (!tabId)
81 tabId = WebInspector.settings.resourceViewTab;
83 if (!this._tabbedPane.selectTab(tabId)) {
92 WebInspector.settings.resourceViewTab = event.data.tabId;
DTabbedPane.js67 var event = {tabId: id}; property
/external/chromium/chrome/browser/ui/cocoa/extensions/
Dbrowser_action_button.h62 tabId:(int)tabId;
80 @property(readwrite, nonatomic) int tabId;
93 @property(readwrite, nonatomic) int tabId;
Dbrowser_action_button.mm109 @synthesize tabId = tabId_;
118 tabId:(int)tabId {
127 [cell setTabId:tabId];
139 tabId_ = tabId;
301 @synthesize tabId = tabId_;
Dbrowser_actions_controller.mm474 tabId:[self currentTabId]] autorelease];
719 int tabId = [self currentTabId];
720 if (tabId < 0) {
726 if (action->HasPopup(tabId)) {
727 GURL popupUrl = action->GetPopupUrl(tabId);
Dextension_action_context_menu.mm303 int tabId = CurrentTabId();
304 GURL url = action_->GetPopupUrl(tabId);
/external/webkit/Source/WebKit/chromium/src/js/
DDevTools.js165 WebInspector.platformExtensionAPI = function(tabId) argument
169 return tabId;
183 WebInspector.setInspectedTabId = function(tabId) argument
185 WebInspector._inspectedTabId = tabId;
/external/chromium/chrome/common/extensions/docs/examples/extensions/fx/
Dbg.js260 function tabNavigated(tabId, changeInfo, tab) { argument
341 function tabSelectionChanged(tabId) { argument
342 selectedTabId = tabId;
347 chrome.tabs.get(tabId, function(tab) {
364 function tabRemoved(tabId) { argument
368 if (tabId == selectedTabId) {
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
Dscreenshot.js14 var addSnapshotImageToTab = function(tabId, changedProps) { argument
18 if (tabId != targetId || changedProps.status != "complete")
/external/chromium/chrome/browser/resources/net_internals/
Dserviceprovidersview.js15 function ServiceProvidersView(tabId, argument
21 var tab = document.getElementById(tabId);
Dmain.js252 var tabId = anchorMap[parameters[0]];
253 if (!tabId)
269 categoryTabSwitcher.switchToTab(tabId, paramDict);
/external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
Dchrome_ex_oauth.js75 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) { argument
78 changeInfo.url != tabs[tabId] &&
82 chrome.tabs.remove(tabId);
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
Dchrome_ex_oauth.js75 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) { argument
78 changeInfo.url != tabs[tabId] &&
82 chrome.tabs.remove(tabId);
/external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
Dchrome_ex_oauth.js75 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) { argument
78 changeInfo.url != tabs[tabId] &&
82 chrome.tabs.remove(tabId);
/external/chromium/chrome/browser/debugger/
Ddevtools_window.cc289 FundamentalValue tabId(inspected_tab_->controller().session_id().id()); in AddDevToolsExtensionsToClient() local
290 CallClientFunction(ASCIIToUTF16("WebInspector.setInspectedTabId"), tabId); in AddDevToolsExtensionsToClient()
/external/chromium/chrome/common/extensions/docs/examples/api/webNavigation/basic/
Dnavigation_collector.js130 return data.tabId + '-' + data.frameId;
/external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
Dbackground.js653 function onTabUpdated(tabId, changeInfo, tab) { argument
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-167208 * src/js/DevTools.js: Added a way for extension to get tabId of inspected window.