/external/chromium/chrome/common/extensions/docs/examples/api/processes/show_tabs/ |
manifest.json | 2 "name": "Show Tabs in Process", 4 "description": "Adds a browser action showing which tabs share the current tab's process.", 6 "experimental", "tabs" 9 "default_title": "Show Tabs in this Process",
|
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
manifest.json | 3 "description": "Utility for working with the extension tabs api", 5 "permissions": ["tabs"],
|
background.html | 3 chrome.tabs.create({url:chrome.extension.getURL("tabs_api.html")});
|
/external/chromium/chrome/common/extensions/docs/static/ |
tabs.html | 1 <div id="pageData-name" class="pageData">Tabs</div> 5 Use the <code>chrome.tabs</code> module 8 create, modify, and rearrange tabs in the browser. 11 <img src="images/tabs.png" 12 width="323" height="50" alt="Two tabs in a window" /> 16 Almost all <code>chrome.tabs</code> methods require you to 17 declare the "tabs" permission 26 "tabs" 32 The two methods that don't require the "tabs" permission are 41 You can find simple examples of using the tabs module in th [all...] |
/external/markdown/MarkdownTest/Tests_2004/ |
Tabs.text | 2 indented with tabs 13 this code block is indented by two tabs 18 indented with tabs
|
Tabs.html | 3 indented with tabs</p></li> 15 <pre><code> this code block is indented by two tabs 21 indented with tabs
|
/external/markdown/MarkdownTest/Tests_2007/ |
Tabs.text | 2 indented with tabs 13 this code block is indented by two tabs 18 indented with tabs
|
Tabs.html | 3 indented with tabs</p></li> 15 <pre><code> this code block is indented by two tabs 21 indented with tabs
|
/external/markdown/tests/markdown-test/ |
tabs.txt | 2 indented with tabs 13 this code block is indented by two tabs 18 indented with tabs
|
tabs.html | 4 indented with tabs</p> 15 <pre><code> this code block is indented by two tabs 19 indented with tabs
|
/external/chromium/chrome/browser/extensions/ |
extension_event_names.cc | 9 const char kOnTabAttached[] = "tabs.onAttached"; 10 const char kOnTabCreated[] = "tabs.onCreated"; 11 const char kOnTabDetached[] = "tabs.onDetached"; 12 const char kOnTabMoved[] = "tabs.onMoved"; 13 const char kOnTabRemoved[] = "tabs.onRemoved"; 14 const char kOnTabSelectionChanged[] = "tabs.onSelectionChanged"; 15 const char kOnTabUpdated[] = "tabs.onUpdated";
|
extension_tabs_apitest.cc | 25 #define MAYBE_Tabs Tabs 49 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "crud.html")) << message_; 54 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "pinned.html")) << message_; 59 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "move.html")) << message_; 64 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "events.html")) << message_; 69 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "relative_urls.html")) 75 ASSERT_TRUE(RunExtensionSubtest("tabs/basics", "crash.html")) << message_; 80 ASSERT_TRUE(RunExtensionTest("tabs/get_current")) << message_; 85 ASSERT_TRUE(RunExtensionTest("tabs/connect")) << message_; 90 ASSERT_TRUE(RunExtensionTest("tabs/on_removed")) << message_ [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/cookies/ |
background.html | 11 var tabs = windows[i].tabs;
12 for (var j in tabs) {
13 var tab = tabs[j];
21 chrome.tabs.update(existing_tab.id, {"selected":true});
23 chrome.tabs.create({"url":url, "selected":true});
|
/external/chromium/chrome/common/extensions/docs/examples/api/i18n/cld/ |
manifest.json | 7 "tabs"
|
background.html | 10 chrome.tabs.detectLanguage(null, function(language) { 18 chrome.tabs.onUpdated.addListener(function(tabId, props) { 23 chrome.tabs.onSelectionChanged.addListener(function(tabId, props) { 28 chrome.tabs.getSelected(null, function(tab) {
|
/external/chromium/chrome/common/extensions/docs/ |
samples.json | 128 "chrome.tabs.captureVisibleTab": "tabs.html#method-captureVisibleTab", 129 "chrome.tabs.connect": "tabs.html#method-connect", 130 "chrome.tabs.create": "tabs.html#method-create", 131 "chrome.tabs.detectLanguage": "tabs.html#method-detectLanguage", 132 "chrome.tabs.executeScript": "tabs.html#method-executeScript" [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/ |
manifest.json | 4 "description": "Demonstrate screenshot functionality in the chrome.tabs api.", 10 "permissions": ["tabs"]
|
/external/chromium/chrome/browser/ui/views/tabs/ |
tab_strip_factory.cc | 5 #include "chrome/browser/ui/views/tabs/tab_strip_factory.h" 7 #include "chrome/browser/ui/views/tabs/browser_tab_strip_controller.h" 8 #include "chrome/browser/ui/views/tabs/side_tab_strip.h" 9 #include "chrome/browser/ui/views/tabs/tab_strip.h" 12 // SideTabStrip, depending on whether we are using vertical tabs.
|
/frameworks/base/docs/html/design/building-blocks/ |
tabs.jd | 1 page.title=Tabs 6 <p>Tabs in the action bar make it easy to explore and switch between different views or functional 10 <h2 id="scrollable">Scrollable Tabs</h2> 28 Scrolling tabs in Google Play. 36 <h2 id="fixed">Fixed Tabs</h2> 39 <p>Fixed tabs display all items concurrently. To navigate to a different view, touch the tab.</p> 43 Tabs in Holo Dark & Light. 48 Tabs in the YouTube app. 53 <h2 id="stacked">Stacked Tabs</h2> 56 <p>If view navigation is essential to your app, you can break out tabs into a separate action bar. Thi [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/chrome/browser/resources/ |
gpu_internals.html | 15 html, body, #main-tabs { 79 var tabs = $('main-tabs'); 80 cr.ui.decorate(tabs, gpu.TabControl); 82 // Sync the main-tabs selectedTabs in-sync with the location. 83 tabs.addEventListener('selectedTabChange', function() { 84 if (tabs.selectedTab.id) { 85 history.pushState('', '', '#' + tabs.selectedTab.id); 91 if (tabs.tabs.length [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/browserAction/make_page_red/ |
manifest.json | 6 "tabs", "http://*/*"
|
/external/chromium/chrome/common/extensions/docs/examples/api/browserAction/set_icon_path/ |
manifest.json | 6 "tabs", "http://*/*"
|
/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) {
|