HomeSort by relevance Sort by last modified time
    Searched refs:tabs (Results 1 - 25 of 349) 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/chrome/browser/debugger/
browser_list_tabcontents_provider.cc 7 #include "chrome/browser/tabs/tab_strip_model.h"
12 DevToolsHttpProtocolHandler::InspectableTabs tabs; local
17 tabs.push_back(model->GetTabContentsAt(i));
19 return tabs;
  /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/chrome/browser/resources/options/
subpages_tab_controls.css 7 .subpages-nav-tabs .tab {
12 .subpages-nav-tabs .active-tab {
21 /* To avoid tabs changing size when they are clicked and their labels become
26 .subpages-nav-tabs .active-tab-label {
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 {
52 .subpages-nav-tabs {
    [all...]
  /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"
19 // No blocked tabs.
23 void GetOpenUrls(const TabStripModel& tabs,
26 for (int i = 0; i < tabs.count(); ++i) {
27 content::WebContents* web_contents = tabs.GetWebContentsAt(i);
tab_strip_model_utils.h 23 // Creates a set containing the canonical URLs of the currently open tabs.
24 void GetOpenUrls(const TabStripModel& tabs,
  /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/tools/telemetry/telemetry/core/
browser_unittest.py 54 self.assertEquals(1, len(b.tabs))
57 assert b.tabs[0].url
64 t = b.tabs[0]
83 existing_tab = b.tabs[0]
84 self.assertEquals(1, len(b.tabs))
87 new_tab = b.tabs.New()
88 self.assertEquals(2, len(b.tabs))
93 self.assertEquals(1, len(b.tabs))
98 b.tabs[0].Navigate(b.http_server.UrlOf('blank.html'))
99 b.tabs[0].WaitForDocumentReadyStateToBeInteractiveOrBetter(
    [all...]
  /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/test/functional/
special_tabs.py 14 """TestCase for Special Tabs like about:version, chrome://history, etc."""
204 tabs = self.special_url_tabs.copy()
207 tabs.update(self.chromeos_special_url_tabs)
210 tabs.update(self.linux_special_url_tabs)
213 tabs.update(self.mac_special_url_tabs)
216 tabs.update(self.win_special_url_tabs)
219 if key in tabs:
220 del tabs[key]
223 tabs.update(self.google_special_url_tabs)
226 tabs.update(self.google_chromeos_special_url_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/browser/extensions/api/session_restore/
session_restore_api.cc 26 #include "chrome/browser/ui/tabs/tab_strip_model.h"
46 namespace tabs = api::tabs;
50 scoped_ptr<tabs::Tab> SessionRestoreGetRecentlyClosedFunction::CreateTabModel(
52 scoped_ptr<tabs::Tab> tab_struct(new tabs::Tab);
79 DCHECK(!window.tabs.empty());
81 scoped_ptr<std::vector<linked_ptr<tabs::Tab> > > tabs(
82 new std::vector<linked_ptr<tabs::Tab> >)
202 std::vector<TabRestoreService::Tab>& tabs = 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);
  /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/third_party/WebKit/Source/devtools/front_end/
tabbedPane.css 43 .tabbed-pane-content.has-no-tabs {
58 .tabbed-pane-header-tabs {
100 .tabbed-pane-header-tabs-drop-down-container {
108 .tabbed-pane-header-tabs-drop-down-container.measuring {
112 .tabbed-pane-header-tabs-drop-down {
120 .tabbed-pane-header-tabs-drop-down:hover {
124 .tabbed-pane-header-tabs-drop-down:active {
128 select.tabbed-pane-header-tabs-drop-down-select {
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
results_unittests.js 137 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 0);
141 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 1);
146 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 0);
151 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 1);
155 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 0);
160 equals($($('.builder-selector', view)[0]).tabs('option', 'selected'), 1);
  /external/chromium/chrome/browser/sessions/
tab_restore_service.cc 137 // have Tabs with the |id|.
143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin();
144 for ( ; j != window->tabs.end(); ++j) {
145 // If the ID matches one of this window's tabs, remove it from the list.
147 window->tabs.erase(j);
241 // into the vector, which will give all tabs in a window the same ID.
243 window->tabs.push_back(Tab());
247 PopulateTab(&(window->tabs[entry_index]),
251 if (window->tabs[entry_index].navigations.empty()) {
252 window->tabs.erase(window->tabs.begin() + entry_index)
553 std::vector<Tab>& tabs = static_cast<Window*>(*i)->tabs; local
    [all...]
  /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 399 milliseconds

1 2 3 4 5 6 7 8 91011>>