HomeSort by relevance Sort by last modified time
    Searched full:tabs (Results 301 - 325 of 3159) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/sync/glue/
synced_session.cc 43 for (std::vector<SessionTab*>::const_iterator i = window.tabs.begin();
44 i != window.tabs.end(); ++i) {
  /external/chromium_org/chrome/browser/ui/ash/tabs/
dock_info_chromeos.cc 5 #include "chrome/browser/ui/tabs/dock_info.h"
7 #include "chrome/browser/ui/ash/tabs/dock_info_ash.h"
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_all_tabs_controller.h 19 // A controller for the Bookmark All Tabs sheet which is presented upon
20 // selecting the Bookmark All Tabs... menu item shown by the contextual
  /external/chromium_org/chrome/browser/ui/
singleton_tabs.h 11 // Methods for opening "singleton tabs". Tabs are guaranteed unique by varying
uma_browsing_activity_observer.h 32 // Counts the number of tabs in each browser window and logs them. This is
35 // tabs here.
unload_controller.h 12 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
72 // Returns true if |browser_| has any tabs that have BeforeUnload handlers
74 // of tabs that need their BeforeUnloadHandlers fired.
107 // Whether we've completed firing all the tabs' beforeunload/unload events.
110 // Clears all the state associated with processing tabs' beforeunload/unload
138 // Tracks tabs that need there beforeunload event fired before we can
142 // Tracks tabs that need there unload event fired before we can
152 // A callback to call to report whether the user chose to close all tabs of
  /external/chromium_org/chrome/browser/ui/tabs/
hover_tab_selector.cc 5 #include "chrome/browser/ui/tabs/hover_tab_selector.h"
10 #include "chrome/browser/ui/tabs/tab_strip_model.h"
pinned_tab_service.h 16 // pinned tabs to restore at startup. PinnedTabService listens for the
31 // True if we should save the pinned tabs when a browser window closes or the
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip_controller.h 9 #include "chrome/browser/ui/views/tabs/tab_strip_types.h"
33 // Returns the number of tabs in the model.
75 // Updates the loading animations of all the tabs.
91 // Compatible tab strips can transfer tabs during drag and drop.
108 // Notifies controller that the user started dragging this tabstrip's tabs.
111 // Notifies controller that the user stopped dragging this tabstrip's tabs.
112 // This is also called when the tabs that the user is dragging were detached
113 // from this tabstrip but the user is still dragging the tabs.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
background.js 44 chrome.tabs.executeScript(tabId, { file: "content.js" }, function() {
45 chrome.tabs.sendRequest(tabId, {}, function(results) {
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
activeTab.html 69 // No tabs or host permissions needed!
71 chrome.tabs.executeScript({
80 Consider a web clipping extension that has a <a href="browserAction.html">browser action</a> and <a href="contextMenus.html">context menu item</a>. This extension may only really need to access tabs when its browser action is clicked, or when its context menu item is executed.
96 <li>Call <code>$ref:tabs.executeScript</code> or <code>$ref:tabs.insertCSS</code> on that tab.
97 <li>Get the URL, title, and favicon for that tab via an API that returns a <code>$ref:tabs.Tab</code> object (essentially, <code>activeTab</code> grants the <code><a href="tabs.html#manifest">tabs</a></code> permission temporarily).
  /external/chromium_org/chrome/common/extensions/docs/templates/json/
permissions.json 51 "tabs": {
52 "partial": "permissions/tabs.html"
  /external/chromium_org/chrome/test/perf/
tab_switching_test.cc 32 // This Automated UI test opens static files in different tabs in a proxy
33 // browser. After all the tabs have opened, it switches between tabs, and notes
89 // Open all the tabs.
97 // Switch linearly between tabs.
152 // Opens new tabs. Returns the number of tabs opened.
154 // Add tabs.
  /external/chromium_org/content/public/browser/
browser_accessibility_state.h 24 // Enables accessibility for all running tabs.
27 // Disables accessibility for all running 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/page_cycler/webpagereplay/extension/
page_cycler.js 48 chrome.tabs.getSelected(null, function(tab) {
50 chrome.tabs.update(tab.id, {"url": reportUrl}, null);
  /external/chromium_org/tools/perf/profile_creators/
small_profile_creator.py 30 return browser.tabs[0]
32 return browser.tabs.New()
  /external/chromium_org/ui/views/examples/
tabbed_pane_example.h 21 // A TabbedPane example tests adding and selecting tabs.
47 // Control buttons to add and select tabs.
  /frameworks/base/docs/html/training/backward-compatible-ui/
older-implementation.jd 19 <li><a href="#older-tabs">Implement Tabs Using Older APIs</a></li>
47 <p>Action bar tabs can be implemented using a horizontal {@link android.widget.LinearLayout} containing buttons, or using the {@link android.widget.TabWidget} UI element.</p>
62 <h2 id="older-tabs">Implement Tabs Using Older APIs</h2>
64 <p>To create an older implementation of action bar tabs, you can use a {@link android.widget.TabWidget} and {@link android.widget.TabHost} (although one can alternatively use horizontally laid-out {@link android.widget.Button} widgets). Implement this in classes called <code>TabHelperEclair</code> and <code>CompatTabEclair</code>, since this implementation uses APIs introduced no later than Android 2.0 (Eclair).</p>
68 alt="Class diagram for the Eclair implementation of tabs." id="figure-classes">
70 <p class="img-caption"><strong>Figure 1.</strong> Class diagram for the Eclair implementation of tabs.</p>
  /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/chrome/common/extensions/docs/static/
permission_warnings.html 71 assume you add a new site and the "tabs" permission
79 "tabs"</b>
110 It can be surprising when adding a permission such as "tabs"
114 although the <code>chrome.tabs</code> API
115 might be used only to open new tabs,
118 (using their <a href="tabs.html#type-Tab">Tab</a> objects).
124 you no longer need to specify the "tabs" permission
125 just to call <code>chrome.tabs.create()</code>
126 or <code>chrome.tabs.update()</code>.
190 Your tabs and browsing activit
    [all...]
  /external/chromium/chrome/browser/printing/
print_preview_tab_controller_unittest.cc 6 #include "chrome/browser/tabs/tab_strip_model.h"
55 // To show multiple print preview tabs exist in the same browser for
56 // different initiator tabs. If preview tab already exists for an initiator, it
63 // Lets start with one window and two tabs.
92 // 2 initiator tab and 2 preview tabs exist in the same browser.
  /external/chromium/chrome/browser/tabs/
tab_finder.h 24 // TabFinder is used to locate a tab by URL. TabFinder matches tabs based
25 // on the tabs current url, or the start of the redirect chain.
73 // url. Returns NULL if there are no tabs matching the specified url.
80 // Queries all the tabs in |browser| for the start of the redirect chain.
86 // Cancels any pending requests for the specified tabs redirect chain.
  /external/chromium_org/chrome/browser/extensions/activity_log/
activity_log_policy_unittest.cc 23 "tabs.executeScript");
64 std::make_pair(Action::ACTION_API_CALL, "tabs.executeScript"));
71 "tabs.executeScript");
78 "punky", base::Time::Now(), Action::ACTION_API_CALL, "tabs.create");
90 "tabs.executeScript");

Completed in 261 milliseconds

<<11121314151617181920>>