Searched defs:tabId (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/examples/api/debugger/live-headers/
H A Dheaders.js5 var tabId = parseInt(window.location.search.substring(1)); variable
8 chrome.debugger.sendCommand({tabId:tabId}, "Network.enable");
13 chrome.debugger.detach({tabId:tabId});
19 if (tabId != debuggeeId.tabId)
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
H A DTabList.java46 * @param tabId The id of the {@link Tab} that might have a pending closure.
47 * @return Whether or not the {@link Tab} specified by {@code tabId} has a pending
50 boolean isClosurePending(int tabId); argument
H A DTabModelUtils.java31 * @param tabId The id of the {@link Tab} to close.
34 public static boolean closeTabById(TabModel model, int tabId) { argument
35 return closeTabById(model, tabId, false);
40 * @param tabId The id of the {@link Tab} to close.
44 public static boolean closeTabById(TabModel model, int tabId, boolean canUndo) { argument
45 Tab tab = TabModelUtils.getTabById(model, tabId);
65 * @param tabId The id of the {@link Tab} to find.
69 public static int getTabIndexById(TabList model, int tabId) { argument
74 if (tab.getId() == tabId) return i;
83 * @param tabId Th
86 getTabById(TabList model, int tabId) argument
[all...]
H A DEmptyTabModel.java91 public boolean isClosurePending(int tabId) { argument
110 public void commitTabClosure(int tabId) { argument
114 public void cancelTabClosure(int tabId) { argument
H A DTabModel.java97 * Commits a pending closure specified by {@code tabId}.
98 * @param tabId The id of the {@link Tab} to commit the pending closure.
100 public void commitTabClosure(int tabId); argument
105 * @param tabId The id of the {@link Tab} to undo.
107 public void cancelTabClosure(int tabId); argument
H A DTabModelBase.java205 private Tab findTabInAllTabModels(int tabId) { argument
206 Tab tab = TabModelUtils.getTabById(mModelDelegate.getModel(mIsIncognito), tabId);
208 return TabModelUtils.getTabById(mModelDelegate.getModel(!mIsIncognito), tabId);
242 public boolean isClosurePending(int tabId) { argument
243 return mRewoundList.getPendingRewindTab(tabId) != null;
258 public void cancelTabClosure(int tabId) { argument
259 Tab tab = mRewoundList.getPendingRewindTab(tabId);
299 public void commitTabClosure(int tabId) { argument
300 Tab tab = mRewoundList.getPendingRewindTab(tabId);
531 public boolean isClosurePending(int tabId) { argument
559 getPendingRewindTab(int tabId) argument
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
H A Dbrowser_action_button.h62 tabId:(int)tabId;
76 @property(readwrite, nonatomic) int tabId; variable
89 @property(readwrite, nonatomic) int tabId; variable
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/widget/accessibility/
H A DAccessibilityTabModelAdapter.java32 * An interface used to notify that the {@link Tab} specified by {@code tabId} should be
37 * Show the {@link Tab} specified by {@code tabId}.
38 * @param tabId The id of the {@link Tab} that should be shown.
40 void showTab(int tabId); argument
80 public void tabChanged(int tabId) {
129 int tabId = (int) getItemId(position);
131 if (tabId == Tab.INVALID_TAB_ID) return null;
141 listItem.setTab(TabModelUtils.getTabById(mUndoneTabModel, tabId),
H A DAccessibilityTabModelListItem.java84 * @param tabId The ID of the tab that this list item represents.
86 public void tabSelected(int tabId); argument
90 * @param tabId The ID of the tab that this list item represents.
92 public void tabClosed(int tabId); argument
96 * @param tabId The ID of the tab that this list item represents.
98 public void tabChanged(int tabId); argument
103 public boolean hasPendingClosure(int tabId); argument
107 * @param tabId The ID of the tab to close.
109 public void schedulePendingClosure(int tabId); argument
113 * @param tabId Th
115 cancelPendingClosure(int tabId) argument
[all...]
/external/chromium_org/chrome/browser/resources/gaia_auth/
H A Dbackground.js44 if (this.bridges_[details.tabId])
45 return this.bridges_[details.tabId].onInsecureRequest(details.url);
52 if (this.bridges_[details.tabId])
53 return this.bridges_[details.tabId].onBeforeSendHeaders(details);
62 if (this.bridges_[details.tabId])
63 return this.bridges_[details.tabId].onHeadersReceived(details);
70 if (this.bridges_[details.tabId])
71 this.bridges_[details.tabId].onCompleted(details);
78 var tabId = this.getTabIdFromPort_(port);
79 if (!this.bridges_[tabId])
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DForeignSessionHelper.java214 long nativeForeignSessionHelper, Tab tab, String sessionTag, int tabId,
213 nativeOpenForeignSessionTab( long nativeForeignSessionHelper, Tab tab, String sessionTag, int tabId, int disposition) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTabbedPane.js268 var eventData = { tabId: id, view: tab.view, isUserGesture: userGesture };
274 * @param {string} tabId
277 hasTab: function(tabId)
279 return !!this._tabsById[tabId];
336 var eventData = { tabId: id, view: tab.view, isUserGesture: userGesture };
539 var tabId = /** @type {string} */ (event.data);
540 this.selectTab(tabId, true);
614 for (var tabId in this._tabs) {
615 var tab = this._tabs[tabId];
625 for (var tabId i
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DInfoBarContainer.java121 int tabId, ViewGroup parentView, WebContents webContents) {
145 mTabId = tabId;
208 public void onParentViewChanged(int tabId, ViewGroup parentView) { argument
209 mTabId = tabId;
120 InfoBarContainer(Activity activity, AutoLoginProcessor autoLoginProcessor, int tabId, ViewGroup parentView, WebContents webContents) argument
/external/chromium_org/chrome/common/extensions/docs/examples/api/webNavigation/basic/
H A Dnavigation_collector.js118 * openedInNewTab: boolean, source: {frameId: ?number, tabId: ?number},
129 * @param {!{tabId: ?number, frameId: ?number}} data Information
137 return data.tabId + '-' + (data.frameId ? data.frameId : 0);
154 tabId: null
219 this.pending_[id].openedInNewTab = data.tabId;
221 tabId: data.sourceTabId,
287 tabId: null
322 tabId: null
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchrome_extension_externs.js327 * @param {number} tabId Tab Id.
330 chrome.tabs.connect = function(tabId, opt_connectInfo) {};
341 * @param {number?} tabId Tab id.
344 chrome.tabs.detectLanguage = function(tabId, callback) {};
348 * @param {number?} tabId Tab id.
353 chrome.tabs.executeScript = function(tabId, details, opt_callback) {};
357 * @param {number} tabId Tab id.
360 chrome.tabs.get = function(tabId, callback) {};
400 * @param {number?} tabId Tab id.
405 chrome.tabs.insertCSS = function(tabId, detail
[all...]
/external/chromium_org/third_party/closure_compiler/externs/
H A Dchrome_extensions.js1619 * @param {number} tabId Tab Id.
1622 chrome.tabs.connect = function(tabId, connectInfo) {};
1677 * @param {number} tabId Tab id.
1680 chrome.tabs.get = function(tabId, callback) {};
1757 * @param {number|!Array.<number>} tabId Tab id or array of tab ids.
1761 chrome.tabs.move = function(tabId, moveProperties, opt_callback) {};
1791 * @param {number} tabId The ID of the tab which is to be duplicated.
1795 chrome.tabs.duplicate = function(tabId, opt_callback) {};
1833 * @param {number} tabId Tab id.
1838 chrome.tabs.sendMessage = function(tabId, reques
[all...]
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...

Completed in 3939 milliseconds