/external/chromium/chrome/common/extensions/docs/examples/api/pageAction/set_icon/ |
manifest.json | 5 "permissions": ["tabs"],
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/ |
background.html | 8 chrome.tabs.sendRequest(tabId, {}, function(address) {
27 chrome.tabs.onUpdated.addListener(function(tabId, change, tab) {
33 chrome.tabs.onSelectionChanged.addListener(function(tabId, info) {
39 chrome.tabs.getSelected(null, function(tab) {
|
/external/chromium_org/chrome/browser/ui/tabs/ |
tab_strip_layout_type.h | 8 // Defines what should happen when the tabs won't fit at their ideal size. 12 // Tabs shrink to accomodate the available space. This is the default. 15 // The tabs are always sized to their ideal size and stacked on top of each 16 // other so that only a certain set of tabs are visible. This is used when
|
pinned_tab_codec.h | 23 // PinnedTabCodec is used to read and write the set of pinned tabs to 24 // preferences. When Chrome exits the sets of pinned tabs are written to prefs. 26 // pinned tabs is opened. 39 static void WritePinnedTabs(Profile* profile, const StartupTabs& tabs); 41 // Reads and returns the set of pinned tabs to restore from preferences.
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/contentSettings/ |
manifest.json | 5 "permissions": [ "contentSettings", "tabs" ],
|
/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/ui/cocoa/tabs/ |
side_tab_strip_view.h | 7 #import "chrome/browser/ui/cocoa/tabs/tab_strip_view.h" 9 // A class that handles drawing the background of the tab strip when side tabs
|
side_tab_strip_controller.mm | 5 #import "chrome/browser/ui/cocoa/tabs/side_tab_strip_controller.h" 11 // - animating tabs in and out 24 // Side tabs have no indent since they are not sharing space with the
|
/external/chromium_org/chrome/browser/ui/views/tabs/ |
dock_info_views.cc | 5 #include "chrome/browser/ui/tabs/dock_info.h" 8 #include "chrome/browser/ui/views/tabs/tab.h"
|
/external/chromium_org/chrome/common/extensions/docs/templates/private/intro_tables/ |
tabs_permissions.html | 1 The majority of the <code>chrome.tabs</code> API can be used without declaring 4 <code>"tabs"</code> permission is required in order to populate the
|
/external/chromium/chrome/common/extensions/docs/examples/api/windows/merge_windows/ |
background.html | 13 chrome.tabs.getAllInWindow(targetWindow.id, getTabs); 16 function getTabs(tabs) { 17 tabCount = tabs.length; 30 var numTabs = win.tabs.length; 33 var tab = win.tabs[j]; 36 chrome.tabs.move(tab.id,
|
/external/chromium/chrome/common/extensions/docs/static/ |
events.html | 6 <code>chrome.tabs.onCreated</code> event 11 chrome.tabs.onCreated.<b>addListener(function(</b>tab<b>) {</b> 12 appendToLog('tabs.onCreated --' 28 <a href="tabs.html#event-onCreated"><code>chrome.tabs.onCreated</code></a>, 30 a <a href="tabs.html#type-Tab">Tab</a> object
|
/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/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/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/chrome/common/extensions/docs/examples/api/processes/show_tabs/ |
popup.html | 4 // Show a list of all tabs in the same process as this one. 7 chrome.tabs.getSelected(currentWindow.id, function(selectedTab) { 12 titleDiv.innerHTML = "<b>Tabs in Process " + pid + ":</b>"; 23 // Loop over all windows and their tabs 24 var tabs = []; 27 for (var j = 0; j < windowList[i].tabs.length; j++) { 28 var tab = windowList[i].tabs[j]; 30 tabs.push(tab); 36 tabs.forEach(function(tab) { 63 chrome.tabs.update(tabId, { selected: true }) [all...] |
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
tabs_api.h | 15 #include "chrome/common/extensions/api/tabs.h" 93 // Tabs 97 DECLARE_EXTENSION_FUNCTION("tabs.get", TABS_GET) 102 DECLARE_EXTENSION_FUNCTION("tabs.getCurrent", TABS_GETCURRENT) 107 DECLARE_EXTENSION_FUNCTION("tabs.getSelected", TABS_GETSELECTED) 112 DECLARE_EXTENSION_FUNCTION("tabs.getAllInWindow", TABS_GETALLINWINDOW) 117 DECLARE_EXTENSION_FUNCTION("tabs.query", TABS_QUERY) 122 DECLARE_EXTENSION_FUNCTION("tabs.create", TABS_CREATE) 127 DECLARE_EXTENSION_FUNCTION("tabs.duplicate", TABS_DUPLICATE) 136 DECLARE_EXTENSION_FUNCTION("tabs.highlight", TABS_HIGHLIGHT [all...] |
/external/chromium_org/chrome/ |
chrome_browser_ui_views.gyp | 39 'browser/ui/views/tabs/tab_renderer_data.cc', 40 'browser/ui/views/tabs/tab_renderer_data.h', 41 'browser/ui/views/tabs/tab_strip_observer.cc', 42 'browser/ui/views/tabs/tab_strip_observer.h', 43 'browser/ui/views/tabs/tab_strip_types.h',
|
/external/chromium/chrome/browser/ui/touch/tabs/ |
tab_strip_factory.cc | 7 #include "chrome/browser/ui/views/tabs/tab_strip_factory.h" 9 #include "chrome/browser/ui/touch/tabs/touch_tab_strip.h" 10 #include "chrome/browser/ui/views/tabs/browser_tab_strip_controller.h"
|
/external/chromium_org/chrome/common/extensions/docs/examples/howto/tab_shortcuts/ |
tab_shortcuts.js | 12 chrome.tabs.update({}, function(tab) { 14 chrome.tabs.update({pinned: !tab.pinned}); 16 chrome.tabs.duplicate(tab.id);
|
/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/markdown/MarkdownTest/Tests_2004/ |
Tabs.text-out | 11 <p>this is a list item indented with tabs</p> 24 <code> this code block is indented by two tabs 30 indented with tabs
|
Tabs.text-res | 11 <p>this is a list item indented with tabs</p> 24 <code> this code block is indented by two tabs 30 indented with tabs
|