HomeSort by relevance Sort by last modified time
    Searched full:tabs (Results 126 - 150 of 2963) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/server2/
features_bundle_test.py 46 'tabs': {
65 'dependencies': ['api:tabs'],
121 'tabs': {
150 'tabs': {
151 'partial': 'permissions/tabs.html'
236 'tabs': {
237 'name': 'tabs',
240 'partial': 'permissions/tabs.html'
293 'tabs': {
295 'name': 'tabs',
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/automation/
automation_apitest.cc 10 #include "chrome/browser/ui/tabs/tab_strip_model.h"
96 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "sanity_check.html"))
103 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "tab_id.html"))
109 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "events.html"))
122 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "actions.html"))
133 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "location.html"))
171 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs",
  /external/chromium_org/chrome/browser/ui/
uma_browsing_activity_observer.cc 15 #include "chrome/browser/ui/tabs/tab_strip_model.h"
100 // Record how many tabs each window has open.
102 UMA_HISTOGRAM_CUSTOM_COUNTS("Tabs.TabCountPerWindow",
108 // Record how many tabs the active window has open.
109 UMA_HISTOGRAM_CUSTOM_COUNTS("Tabs.TabCountActiveWindow",
121 // Record how many tabs total are open (across all windows).
122 UMA_HISTOGRAM_CUSTOM_COUNTS("Tabs.TabCountPerLoad", tab_count, 1, 200, 50);
  /external/chromium_org/chrome/browser/web_resource/
notification_promo_mobile_ntp.h 59 // The short text of the promotion (e.g. for Most Visited and Open Tabs).
61 // The long text of the promotion (e.g. for Open Tabs when no tabs are open).
65 // The title of the virtual computer (e.g. when shown on Open Tabs).
67 // The detailed info for the virtual computer (e.g. when shown on Open Tabs).
75 // True if the promo should be shown on Open Tabs pane.
77 // True if the promo should show the virtual computer (e.g. on Open Tabs).
  /external/strace/
syscallent.sh 34 tabs = "\t\t\t\t\t\t\t\t"
43 s = s substr(tabs, 1, 24/8 - int((length(f) + 1)/8))
45 s = s substr(tabs, 1, 16/8 - int((length(n) + 2)/8))
53 s = s substr(tabs, 1, 24/8 - int((length(f) + 1)/8))
55 s = s substr(tabs, 1, 16/8 - int((length(n) + 2)/8))
66 s = s substr(tabs, 1, 24/8 - int((length(f) + 1)/8))
68 s = s substr(tabs, 1, 16/8 - int((length(n) + 2)/8))
  /packages/apps/Browser/src/com/android/browser/
TabControl.java 42 // Maximum number of tabs.
44 // Private array of WebViews that are used as tabs.
46 // Queue of most recently viewed tabs.
108 * return the list of tabs
159 * Returns true if there are any incognito tabs open.
160 * @return True when any incognito tabs are open, false otherwise.
188 * number of open tabs.
196 // Return false if we have maxed out on tabs
220 * Remove the parent child relationships from all tabs.
241 // Remove t from our list of tabs
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/sessions/
sessions_api.cc 17 #include "chrome/browser/extensions/api/tabs/windows_util.h"
33 #include "chrome/browser/ui/tabs/tab_strip_model.h"
48 namespace tabs = api::tabs;
67 // Comparator function for use with std::sort that will sort tabs in a window
73 scoped_ptr<tabs::Tab> CreateTabModelHelper(
81 scoped_ptr<tabs::Tab> tab_struct(new tabs::Tab);
107 scoped_ptr<std::vector<linked_ptr<tabs::Tab> > > tabs,
    [all...]
  /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."},
19 "selected": {"type": "boolean", "description": "Whether the tab is selected.", "deprecated": "Please use $(ref:tabs.Tab.highlighted)."},
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."},
175 "deprecated": "Please use $(ref:tabs.query) <code>{active: true}</code>.",
198 "deprecated": "Please use $(ref:tabs.query) <code>{windowId: windowId}</code>."
    [all...]
sessions.json 8 "description": "Use the <code>chrome.sessions</code> API to query and restore tabs and windows from a browsing session.",
28 "tab": {"$ref": "tabs.Tab", "optional": true, "description": "The $(ref:tabs.Tab), if this entry describes a tab. Either this or $(ref:sessions.Session.window) will be set."},
46 "description": "Gets the list of recently closed tabs and/or windows.",
58 "name": "sessions", "type": "array", "items": { "$ref": "Session" }, "description": "The list of closed entries in reverse order that they were closed (the most recently closed tab or window will be at index <code>0</code>). The entries may contain either tabs or windows."
79 "name": "devices", "type": "array", "items": { "$ref": "Device" }, "description": "The list of $(ref:sessions.Device) objects for each synced session, sorted in order from device with most recently modified session to device with least recently modified session. $(ref:tabs.Tab) objects are sorted by recency in the $(ref:windows.Window) of the $(ref:sessions.Session) objects."
88 "description": "Reopens a $(ref:windows.Window) or $(ref:tabs.Tab), with an optional callback to run when the entry has been restored.",
94 "description": "The $(ref:windows.Window.sessionId), or $(ref:tabs.Tab.sessionId) to restore. If this parameter is not specified, the most recently closed session is restored."
104 "description": "A $(ref:sessions.Session) containing the restored $(ref:windows.Window) or $(ref:tabs.Tab) object."
114 "description": "Fired when recently closed tabs and/or windows are changed. This event does not monitor synced sessions changes."
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/tabs/
tab_window_controller.h 9 // tabs which can be dragged around. Tabs can be re-arranged within the same
59 // Layout the tabs based on the current ordering of the model.
62 // Creates a new window by pulling the given tabs out and placing it in
78 // Returns whether one of the window's tabs is being dragged.
99 // Called to check if the receiver can receive dragged tabs from
113 // Number of tabs in the tab strip. Useful, for example, to know if we're
114 // dragging the only tab in the window. This includes pinned tabs (both live
118 // YES if there are tabs in the tab strip which have content, allowing for
119 // the notion of tabs in the tab strip that are placeholders but currently hav
    [all...]
  /external/chromium_org/ui/webui/resources/js/cr/ui/
tabs.js 47 TABS: Tabs,
69 element = this.querySelector('tabs');
125 * Creates a new tabs element.
130 var Tabs = cr.ui.define('tabs');
131 Tabs.prototype = {
136 // Make the Tabs element focusable.
236 Tabs: Tabs,
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_service_unittest.cc 131 EXPECT_EQ(1U, windows[0]->tabs.size());
135 SessionTab* tab = windows[0]->tabs[0];
203 ASSERT_EQ(1U, windows[0]->tabs.size());
206 SessionTab* tab = windows[0]->tabs[0];
256 ASSERT_EQ(1U, windows[0]->tabs.size());
258 SessionTab* tab = windows[0]->tabs[0];
287 ASSERT_EQ(1U, windows[0]->tabs.size());
289 SessionTab* tab = windows[0]->tabs[0];
316 ASSERT_EQ(1U, windows[0]->tabs.size());
317 ASSERT_EQ(1U, windows[1]->tabs.size())
    [all...]
  /external/chromium_org/chrome/browser/extensions/activity_log/
uma_policy.h 13 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
21 // * If multiple tabs are open for the same URL at the same time, UmaPolicy
23 // * UmaPolicy does not record statistics for incognito tabs. (For privacy.)
24 // * If the number of tabs open exceeds 50, UmaPolicy stops recording stats
25 // for tabs 51+. (For memory.)
73 // The max number of tabs we track at a time.
  /external/chromium_org/extensions/browser/
file_highlighter_unittest.cc 27 " \"tabs\"\n"
50 " \"tabs\"\n"
56 const char kTabsFeature[] = "\"tabs\"";
57 ManifestHighlighter tabs(kManifest, "permissions", "tabs");
58 EXPECT_EQ(kTabsFeature, tabs.GetFeature());
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
_index.html 16 <dt><a href="ActionBarTabs.html">Action Bar Tabs</a></dt>
17 <dd>Demonstrates the use of Action Bar tabs and how they interact with other action bar
18 features. Also see the <a href="FragmentTabs.html">Fragment Tabs</a> for a more
  /external/chromium_org/chrome/browser/ui/cocoa/find_bar/
find_bar_browsertest.mm 12 #include "chrome/browser/ui/tabs/tab_strip_model.h"
31 // Verify that if the find bar has focus then switching tabs and changing
40 // Verify that if the find bar does not have focus then switching tabs and
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller_interactive_uitest.h 40 // the tabs in |browser|.
66 // Resets the ids of all the tabs in |model| starting at |start|. That is, the
70 // Returns a string representation of the ids of the tabs in |model|. Each id
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contentSettings/
popup.js 24 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
25 var current = tabs[0];
  /external/chromium_org/tools/perf/measurements/
memory_pressure.py 30 return browser.tabs.New()
35 histogram_type, "Tabs.Discard.DiscardCount", tab)
37 histogram_type, "Tabs.SadTab.KillCreated", tab)
  /external/chromium_org/chrome/browser/download/
download_started_animation_browsertest.cc 8 #include "chrome/browser/ui/tabs/tab_strip_model.h"
  /external/chromium_org/chrome/browser/extensions/api/tabs/
tabs_interactive_test.cc 6 #include "chrome/browser/extensions/api/tabs/tabs_api.h"
7 #include "chrome/browser/extensions/api/tabs/tabs_constants.h"
49 base::ListValue* tabs = NULL; local
50 EXPECT_FALSE(result.get()->GetList(keys::kTabsKey, &tabs));
62 // "populate" was enabled so tabs should be populated.
63 EXPECT_TRUE(result.get()->GetList(keys::kTabsKey, &tabs));
88 // Get tabs in the 'last focused' window called from non-focused browser.
106 // Get tabs NOT in the 'last focused' window called from the focused browser.
130 ASSERT_TRUE(RunExtensionTest("tabs/current_window")) << message_;
  /external/chromium_org/chrome/browser/extensions/
extension_javascript_url_apitest.cc 14 ASSERT_TRUE(RunExtensionTest("tabs/javascript_url_permissions")) << message_;
  /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 {
  /external/chromium_org/chrome/browser/resources/hotword_helper/
manifest.json 22 "tabs"
  /external/chromium_org/chrome/browser/resources/quota_internals/
main.html 17 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
20 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
31 <tabs>
35 </tabs>

Completed in 522 milliseconds

1 2 3 4 56 7 8 91011>>