HomeSort by relevance Sort by last modified time
    Searched refs:tabs (Results 1 - 25 of 331) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
tabs.js 10 var tabs = windows[i].tabs;
11 for (var j = 0; j < tabs.length; j++) {
12 chrome.tabs.sendRequest(
13 tabs[j].id,
23 var tabs = windows[i].tabs;
24 for (var j = 0; j < tabs.length; j++) {
25 chrome.tabs.executeScript(
26 tabs[j].id
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/
settings.css 5 #tabs-settings table {
9 #tabs-settings table td {
13 #tabs-settings table td:last-of-type {
17 #tabs-settings input[type="text"] {
23 #tabs-settings input[type="text"].saved {
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_utils.cc 5 #include "chrome/browser/ui/tabs/tab_strip_model_utils.h"
8 #include "chrome/browser/ui/tabs/tab_strip_model.h"
13 void GetOpenUrls(const TabStripModel& tabs,
16 for (int i = 0; i < tabs.count(); ++i) {
17 content::WebContents* web_contents = tabs.GetWebContentsAt(i);
tab_strip_model_utils.h 19 // Creates a set containing the canonical URLs of the currently open tabs.
20 void GetOpenUrls(const TabStripModel& tabs,
  /external/chromium_org/tools/telemetry/telemetry/core/
browser_info.py 30 if len(self._browser.tabs) == 0 and self._browser.supports_tab_control:
31 self._browser.tabs.New()
32 tab = self._browser.tabs[0]
35 elif len(self._browser.tabs) > 0:
36 tab = self._browser.tabs[0]
browser_unittest.py 58 self.assertEquals(1, len(b.tabs))
61 assert b.tabs[0].url
68 t = b.tabs[0]
87 existing_tab = b.tabs[0]
88 self.assertEquals(1, len(b.tabs))
91 new_tab = b.tabs.New()
92 self.assertEquals(2, len(b.tabs))
97 self.assertEquals(1, len(b.tabs))
102 b.tabs[0].Navigate(b.http_server.UrlOf('blank.html'))
103 b.tabs[0].WaitForDocumentReadyStateToBeInteractiveOrBetter(
    [all...]
  /external/chromium_org/ui/webui/resources/css/
tabs.css 10 tabs {
18 /* New users of tabs.css should add 'new-style-tabs' to the class list of any
19 * 'tabs' or 'tabpanels' elements.
24 tabs.new-style-tabs {
31 tabs > * {
46 tabs.new-style-tabs > * {
57 tabs > :not([selected])
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
subpages_tab_controls.css 5 .subpages-nav-tabs .tab {
10 .subpages-nav-tabs .active-tab {
20 /* To avoid tabs changing size when they are clicked and their labels become
25 .subpages-nav-tabs .active-tab-label,
26 .subpages-nav-tabs .tab-label:hover {
30 .subpages-nav-tabs .tab-label {
36 html[dir=rtl] .subpages-nav-tabs .tab-label {
40 .subpages-nav-tabs .active-tab-label,
41 .subpages-nav-tabs .active-tab .tab-label {
48 .subpages-nav-tabs .active-tab .active-tab-label
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_windows_api.cc 5 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h"
8 #include "chrome/browser/extensions/api/tabs/tabs_event_router.h"
9 #include "chrome/browser/extensions/api/tabs/windows_event_router.h"
11 #include "chrome/common/extensions/api/tabs.h"
22 // Tabs API Events.
23 event_router->RegisterObserver(this, api::tabs::OnCreated::kEventName);
24 event_router->RegisterObserver(this, api::tabs::OnUpdated::kEventName);
25 event_router->RegisterObserver(this, api::tabs::OnMoved::kEventName);
27 api::tabs::OnSelectionChanged::kEventName);
28 event_router->RegisterObserver(this, api::tabs::OnActiveChanged::kEventName)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
background.js 13 var tabs = windows[i].tabs;
14 for (var j in tabs) {
15 var tab = tabs[j];
23 chrome.tabs.update(existing_tab.id, {"selected":true});
25 chrome.tabs.create({"url":url, "selected":true});
  /external/chromium_org/chrome/common/extensions/docs/examples/api/i18n/cld/
background.js 7 chrome.tabs.detectLanguage(null, function(language) {
15 chrome.tabs.onUpdated.addListener(function(tabId, props) {
20 chrome.tabs.onSelectionChanged.addListener(function(tabId, props) {
25 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
26 selectedId = tabs[0].id;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/processes/show_tabs/
popup.js 5 // Show a list of all tabs in the same process as this one.
8 chrome.tabs.query({currentWindow: true, active: true}, function(tabs) {
9 var current = currentWindow.tabs.filter(function(tab) {
16 titleDiv.innerHTML = "<b>Tabs in Process " + pid + ":</b>";
27 // Loop over all windows and their tabs
28 var tabs = [];
31 for (var j = 0; j < windowList[i].tabs.length; j++) {
32 var tab = windowList[i].tabs[j];
34 tabs.push(tab)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/js/
tabs.js 6 * Add support for tab pannels on custom elements (tabs, header and content)
35 var tabs = e.target.parentNode;
36 if (!tabs || tabs.tagName !== 'TABS')
39 var headers = tabs.getElementsByTagName('header'),
40 contents = tabs.getElementsByTagName('content'),
41 tabGroup = tabs.getAttribute("data-group"),
96 var tabs = document.getElementsByTagName('tabs');
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/windows/merge_windows/
background.js 14 chrome.tabs.getAllInWindow(targetWindow.id, getTabs);
17 function getTabs(tabs) {
18 tabCount = tabs.length;
31 var numTabs = win.tabs.length;
34 var tab = win.tabs[j];
36 chrome.tabs.move(tab.id,
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
background.js 11 chrome.tabs.sendRequest(tabId, {}, function(address) {
30 chrome.tabs.onUpdated.addListener(function(tabId, change, tab) {
36 chrome.tabs.onSelectionChanged.addListener(function(tabId, info) {
42 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
43 updateAddress(tabs[0].id);
  /external/chromium_org/chrome/renderer/resources/extensions/
tabs_custom_bindings.js 5 // Custom binding for the tabs API.
7 var binding = require('binding').Binding.create('tabs');
10 var tabsNatives = requireNative('tabs');
16 var tabs = bindingsAPI.compiledApi;
31 var port = tabs.connect(tabId, {name: messaging.kRequestChannel});
37 var port = tabs.connect(tabId, {name: messaging.kMessageChannel});
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
tabs_api.js 5 tabs = {};
27 tabs = {};
33 for (var j = 0; j < windowList[i].tabs.length; j++) {
34 tabIds[tabIds.length] = windowList[i].tabs[j].id;
35 tabs[windowList[i].tabs[j].id] = windowList[i].tabs[j];
56 chrome.tabs.update(id, updateTabData(id));
70 chrome.tabs.move(id, moveTabData(id));
95 chrome.tabs.create(args)
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
RecentlyClosedBridge.java 15 * This class allows Java code to get and clear the list of recently closed tabs.
21 * Callback interface for getting notified when the list of recently closed tabs is updated.
25 * This method will be called every time the list of recently closed tabs is updated.
28 * updated list of tabs.
51 List<RecentlyClosedTab> tabs, int id, String title, String url) {
53 tabs.add(tab);
58 * @param profile The Profile whose recently closed tabs will be queried.
80 * Sets the callback to be called whenever the list of recently closed tabs changes.
88 * @param maxTabCount The maximum number of recently closed tabs to return.
89 * @return The list of recently closed tabs, with up to maxTabCount elements
92 List<RecentlyClosedTab> tabs = new ArrayList<RecentlyClosedTab>(); local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/messaging/timer/
popup.js 19 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
22 var tab = tabs[0];
23 chrome.tabs.sendRequest(tab.id, {counter: 1}, function handler(response) {
25 chrome.tabs.sendRequest(tab.id, {counter: response.counter}, handler);
39 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
43 var port = chrome.tabs.connect(tabs[0].id);
  /external/chromium_org/tools/perf/profile_creators/
small_profile_creator.py 27 return browser.tabs[0]
29 return browser.tabs.New()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
LaunchConfigTabGroup.java 35 ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { local
40 setTabs(tabs);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
NdkGdbLaunchConfigTabGroups.java 31 ILaunchConfigurationTab[] tabs = new ILaunchConfigurationTab[] { local
37 setTabs(tabs);
  /external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/
background.js 7 chrome.tabs.captureVisibleTab(null, {format: 'png'}, function(img) {
13 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
17 chrome.tabs.executeScript(tabId,
  /external/chromium_org/tools/perf/measurements/
tab_switching.py 7 This measurement opens pages in different tabs. After all the tabs have opened,
43 return browser.tabs[0]
45 return browser.tabs.New()
49 return len(browser.tabs) >= len(page.page_set.pages)
54 if len(tab.browser.tabs) != len(page.page_set.pages):
57 # Measure power usage of tabs after quiescence.
72 for i in xrange(len(tab.browser.tabs)):
73 t = tab.browser.tabs[i]
  /external/chromium_org/chrome/browser/resources/history/
other_devices.css 66 .device-show-more-tabs,
67 .device-show-more-tabs:active,
68 .device-show-more-tabs:visited,
69 .device-show-more-tabs:link {

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 91011>>