/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/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" 18 // Tabs API Events. 20 this, api::tabs::OnCreated::kEventName); 22 this, api::tabs::OnUpdated::kEventName); 24 this, api::tabs::OnMoved::kEventName); 26 this, api::tabs::OnSelectionChanged::kEventName); 28 this, api::tabs::OnActiveChanged::kEventName) [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/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/android/java/src/org/chromium/chrome/browser/ |
RecentlyClosedBridge.java | 14 * This class allows Java code to get and clear the list of recently closed tabs. 20 * Callback interface for getting notified when the list of recently closed tabs is updated. 24 * This method will be called every time the list of recently closed tabs is updated. 27 * updated list of tabs. 50 List<RecentlyClosedTab> tabs, int id, String title, String url) { 52 tabs.add(tab); 57 * @param profile The Profile whose recently closed tabs will be queried. 79 * Sets the callback to be called whenever the list of recently closed tabs changes. 87 * @param maxTabCount The maximum number of recently closed tabs to return. 88 * @return The list of recently closed tabs, with up to maxTabCount elements 91 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);
|
/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 | 42 .tabbed-pane-content.has-no-tabs { 57 .tabbed-pane-header-tabs { 104 .tabbed-pane-header-tabs-drop-down-container { 112 .tabbed-pane-header-tabs-drop-down-container.measuring { 116 .tabbed-pane-header-tabs-drop-down { 124 .tabbed-pane-header-tabs-drop-down:hover { 128 .tabbed-pane-header-tabs-drop-down:active { 132 select.tabbed-pane-header-tabs-drop-down-select {
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
browser_unittest.py | 56 self.assertEquals(1, len(b.tabs)) 59 assert b.tabs[0].url 66 t = b.tabs[0] 85 existing_tab = b.tabs[0] 86 self.assertEquals(1, len(b.tabs)) 89 new_tab = b.tabs.New() 90 self.assertEquals(2, len(b.tabs)) 95 self.assertEquals(1, len(b.tabs)) 100 b.tabs[0].Navigate(b.http_server.UrlOf('blank.html')) 101 b.tabs[0].WaitForDocumentReadyStateToBeInteractiveOrBetter( [all...] |
/external/chromium_org/chrome/browser/extensions/api/sessions/ |
sessions_api.cc | 17 #include "chrome/browser/extensions/api/tabs/windows_util.h" 35 #include "chrome/browser/ui/tabs/tab_strip_model.h" 47 namespace tabs = api::tabs; 64 // Comparator function for use with std::sort that will sort tabs in a window 70 scoped_ptr<tabs::Tab> CreateTabModelHelper( 78 scoped_ptr<tabs::Tab> tab_struct(new tabs::Tab); 104 scoped_ptr<std::vector<linked_ptr<tabs::Tab> > > tabs, [all...] |
/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,
|