/frameworks/base/docs/html/training/backward-compatible-ui/ |
new-implementation.jd | 18 <li><a href="#new-tabs">Implement Tabs Using New APIs</a></li> 26 <li><a href="{@docRoot}guide/topics/ui/actionbar.html#Tabs">Action Bar Tabs</a></li> 42 <h2 id="new-tabs">Implement Tabs Using New APIs</h2> 51 alt="Class diagram for the Honeycomb implementation of tabs." id="figure-classes"> 53 <p class="img-caption"><strong>Figure 1.</strong> Class diagram for the Honeycomb implementation of tabs.</p> 57 <p><code>CompatTabHoneycomb</code> is the implementation of the <code>CompatTab</code> abstract class that <code>TabHelperHoneycomb</code> uses to reference individual tabs. <code>CompatTabHoneycomb</code> simply proxies all method calls to its contained {@link android.app.ActionBar.Tab} object.</p>
|
/frameworks/base/media/tests/MediaDump/res/layout/ |
main.xml | 12 android:id="@android:id/tabs"
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/ |
background.js | 99 function show_options(tabs) { 100 var tab = tabs[0]; 104 var tabs = chrome.extension.getViews({"type": "tab"}); 105 if (tabs && tabs.length) { 107 // 'setUrl' ". Sometimes tabs are not the desired extension tabs. 108 if (tabs[0].$suburl != undefined) { 109 tabs[0].setUrl(testUrl); 112 chrome.tabs.getAllInWindow(null, function(all) [all...] |
/external/chromium_org/chrome/browser/sessions/ |
persistent_tab_restore_service.cc | 70 // Indicates we've asked for the last sessions and tabs but haven't gotten the 74 // Indicates we finished loading the last tabs (but not necessarily the last 79 // last tabs). 180 // closed tabs. This creates entries, adds them to staging_entries_, and 204 // Invoked when previous tabs or session is loaded. If both have finished 228 // Results from previously closed tabs/sessions is first added here. When the 233 // Used when loading previous tabs/session and open tabs/session. 285 // Mark all the tabs as closed so that we don't attempt to restore them. 357 // Request the tabs closed in the last session. If the last session crashed [all...] |
in_memory_tab_restore_service.h | 13 // Tab restore service that doesn't persist tabs on disk. This is used on 14 // Android where tabs persistence is implemented on the application side in
|
session_types.h | 69 // tabs in SessionWindow.tabs. 119 // Index of the selected tab in tabs; -1 if no tab is selected. After restore 120 // this value is guaranteed to be a valid index into tabs. 124 // tabs. When done creating though, this is set to the index in 125 // tabs. 142 // The tabs, ordered by visual order. 143 std::vector<SessionTab*> tabs; member in struct:SessionWindow
|
/external/chromium_org/chrome/common/extensions/api/ |
tabs.json | 7 "namespace": "tabs", 8 "description": "Use the <code>chrome.tabs</code> API to interact with the browser's tab system. You can use this API to create, modify, and rearrange tabs in the browser.", 14 "id": {"type": "integer", "minimum": 0, "optional": true, "description": "The ID of the tab. Tab IDs are unique within a browser session. Under some circumstances a Tab may not be assigned an ID, for example when querying foreign tabs using the $ref:sessions API, in which case a session ID may be present."}, 23 "url": {"type": "string", "optional": true, "description": "The URL the tab is displaying. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission."}, 24 "title": {"type": "string", "optional": true, "optional": true, "description": "The title of the tab. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission."}, 25 "favIconUrl": {"type": "string", "optional": true, "optional": true, "description": "The URL of the tab's favicon. This property is only present if the extension's manifest includes the <code>\"tabs\"</code> permission. It may also be an empty string if the tab is loading."}, 198 "description": "Gets details about all tabs in the specified window.", 211 {"name": "tabs", "type": "array", "items": { "$ref": "Tab" } } 235 "description": "The position the tab should take in the window. The provided value will be clamped to between zero and the number of tabs in the window. [all...] |
/external/chromium_org/chrome/browser/extensions/api/tabs/ |
tabs_event_router.cc | 5 #include "chrome/browser/extensions/api/tabs/tabs_event_router.h" 10 #include "chrome/browser/extensions/api/tabs/tabs_constants.h" 11 #include "chrome/browser/extensions/api/tabs/tabs_windows_api.h" 12 #include "chrome/browser/extensions/api/tabs/windows_event_router.h" 19 #include "chrome/browser/ui/tabs/tab_strip_model.h" 38 namespace tabs = api::tabs; 143 // possible for tabs to be created, detached and then destroyed without 195 scoped_ptr<Event> event(new Event(tabs::OnCreated::kEventName, args.Pass())); 229 DispatchEvent(profile, tabs::OnAttached::kEventName, args.Pass() [all...] |
windows_util.cc | 5 #include "chrome/browser/extensions/api/tabs/windows_util.h" 8 #include "chrome/browser/extensions/api/tabs/tabs_constants.h"
|
/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...] |
/frameworks/base/docs/html/training/design-navigation/ |
descendant-lateral.jd | 20 <li><a href="#tabs">Tabs</a></li> 29 <li><a href="{@docRoot}design/building-blocks/tabs.html">Android Design: Tabs</a></li> 55 <p>Descendant and lateral navigation can be provided using lists, tabs, and other user interface patterns. <em>User interface patterns</em>, much like software design patterns, are generalized, common solutions to recurring interaction design problems. We explore a few common lateral navigation patterns in the sections below.</p> 103 <h2 id="tabs">Tabs</h2> 108 href="{@docRoot}design/building-blocks/tabs.html">Tabs</a> guide.</p> 111 <p>Using tabs is a very popular solution for lateral navigation. This pattern allows grouping of sibling screens (…) [all...] |
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
whats_new.html | 101 <li>The <code>index</code> parameter to the $ref:tabs.move 105 $ref:tabs.highlight 134 <li>The <code>chrome.tabs</code> 135 $ref:tabs.executeScript and 136 $ref:tabs.insertCSS 147 $ref:tabs.sendMessage.</li> 169 <li>The <code>chrome.tabs</code> 170 $ref:tabs.query method 191 on one or more tabs remotely. 229 <li>The <code>chrome.tabs</code [all...] |
/external/chromium_org/tools/json_schema_compiler/test/ |
tabs.json | 3 "namespace": "tabs", 4 "description": "The tabs API.", 143 "description": "Deprecated. Please use query({'windowId': windowId}). Gets details about all tabs in the specified window.", 156 {"name": "tabs", "type": "array", "items": { "$ref": "Tab" } } 164 "description": "Creates a new tab. Note: This function can be used without requesting the 'tabs' permission in the manifest.", 180 "description": "The position the tab should take in the window. The provided value will be clamped to between zero and the number of tabs in the window." 222 "description": "Gets all tabs that have the specified properties, or all tabs if no properties are specified.", 231 "description": "Whether the tabs are active in their windows." 236 "description": "Whether the tabs are pinned. [all...] |
/external/chromium/chrome/browser/sessions/ |
tab_restore_service.h | 27 // tabs and windows. When a tab is closed 108 // The tabs that comprised the window, in order. 109 std::vector<Tab> tabs; member in struct:TabRestoreService::Window 141 // of tabs has changed. 161 // Loads the tabs and previous session. This does nothing if the tabs 183 // Indicates we've asked for the last sessions and tabs but haven't gotten 187 // Indicates we finished loading the last tabs (but not necessarily the 192 // last tabs). 203 // Notifies observers the tabs have changed [all...] |
session_restore.cc | 22 #include "chrome/browser/tabs/tab_strip_model.h" 50 // TabLoader is responsible for loading tabs after session restore creates 51 // tabs. New tabs are loaded after the current tab finishes loading, or a delay 54 // doubled. When all tabs are loading TabLoader deletes itself. 80 // Loads the next tab. If there are no more tabs to load this deletes itself, 91 // the set of tabs to load and list of tabs we're waiting to get a load 121 // The set of tabs we've initiated loading on. This does NOT include the 122 // selected tabs [all...] |
/external/chromium_org/chrome/browser/ui/gtk/tabs/ |
dragged_tab_controller_gtk.h | 17 #include "chrome/browser/ui/gtk/tabs/drag_data.h" 18 #include "chrome/browser/ui/tabs/dock_info.h" 32 // |source_tabstrip| is the tabstrip where the tabs reside before any 35 // already. |tabs| contains all the selected tabs when dragging starts. 37 const std::vector<TabGtk*>& tabs); 118 // Handles dragging tabs while the tabs are attached. 121 // Handles dragging while the tabs are detached. 124 // Selects the dragged tabs within |model| [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
known_broken_links.json | 149 "apps/tabs.html#method-sendMessage", 150 "redirects to /extensions/tabs.html" 155 "apps/tabs.html#method-connect", 156 "redirects to /extensions/tabs.html" 161 "apps/tabs.html#method-connect", 162 "redirects to /extensions/tabs.html" 197 "apps/tabs.html#type-Tab", 198 "redirects to /extensions/tabs.html" 203 "apps/tabs.html#type-Tab", 204 "redirects to /extensions/tabs.html [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/ |
background.html | 110 chrome.tabs.getSelected(null, function(tab) { 114 var tabs = chrome.extension.getExtensionTabs(); 115 if (tabs && tabs.length) { 117 // 'setUrl' ". Sometimes tabs are not the desired extension tabs. 118 if (tabs[0].$suburl != undefined) { 119 tabs[0].setUrl(testUrl); 122 chrome.tabs.getAllInWindow(null, function(all) { 125 chrome.tabs.update(all[i].id, {selected: true}) [all...] |
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentNestingTabsSupport.java | 42 mTabHost.addTab(mTabHost.newTabSpec("tabs").setIndicator("Tabs"),
|
/external/chromium/chrome/browser/ |
oom_priority_manager.h | 22 // The algorithm used favors killing tabs that are not pinned, have 26 // them, as no two tabs will have exactly the same idle time.
|
/external/chromium/chrome/browser/tabs/ |
tab_strip_model_order_controller.h | 9 #include "chrome/browser/tabs/tab_strip_model.h" 39 // Returns the index to append tabs at.
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_all_tabs_controller.h | 20 // A controller for the Bookmark All Tabs sheet which is presented upon 21 // selecting the Bookmark All Tabs... menu item shown by the contextual
|
/external/chromium/chrome/browser/ui/views/tabs/ |
abstract_tab_strip_view.h | 25 // Updates the loading animations displayed by tabs in the tabstrip to the 33 // Set the background offset used by inactive tabs to match the frame image.
|
side_tab.h | 9 #include "chrome/browser/ui/views/tabs/base_tab.h" 20 // Returns the preferred height of side tabs.
|
/external/chromium_org/chrome/browser/extensions/api/ |
capture_web_contents_function.h | 20 // This is used by both webview.captureVisibleRegion and tabs.captureVisibleTab. 51 // |tabs.captureVisibleTab()| api, this represents the window-id, and in the
|