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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 695 chrome.tabs.getAllInWindow(null, function(tabs) {
696 for (var i = 0, tab; tab = tabs[i]; i++) {
698 chrome.tabs.update(tab.id, {selected: true});
703 chrome.tabs.create({url: GOOGLE_CALENDAR_URL});
732 chrome.tabs.onUpdated.addListener(onTabUpdated);
  /external/chromium_org/chrome/browser/sessions/
session_service.h 40 // and tabs so that they can be restored at a later date. The state of the
231 // to restore, the tabs are added to it, otherwise a new browser is created.
298 // SessionWindow based on the actual tabs that were restored.
306 // Returns the tab with the specified id in tabs. If a tab does not exist,
309 IdToSessionTab* tabs);
322 // . Deletes and removes any windows with no tabs or windows with types other
326 // . Sorts the tabs in windows with valid tabs based on the tabs
332 // Adds tabs to their parent window based on the tab's window_id. Thi
    [all...]
session_restore.cc 38 #include "chrome/browser/ui/tabs/tab_strip_model.h"
79 // TabLoader is responsible for loading tabs after session restore creates
80 // tabs. New tabs are loaded after the current tab finishes loading, or a delay
87 // TabLoader is loading, it will schedule its tabs to get loaded by the same
123 // Loads the next tab. If there are no more tabs to load this deletes itself,
138 // the set of tabs to load and list of tabs we're waiting to get a load
171 // The set of tabs we've initiated loading on. This does NOT include the
172 // selected tabs
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_tab_util.h 11 #include "chrome/common/extensions/api/tabs.h"
37 // Provides various utility functions that help manipulate tabs.
73 // Creates a Tab object (see chrome/common/extensions/api/tabs.json) with
109 api::tabs::Tab* tab);
147 // Executes the specified callback for all tabs in all browser windows.
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
sessions_sync_perf_test.cc 12 #include "chrome/browser/ui/tabs/tab_strip_model.h"
28 // Opens |num_tabs| new tabs on |profile|.
31 // Update all tabs in |profile| by visiting a new URL.
34 // Close all tabs in |profile|.
37 // Returns the number of open tabs in all sessions (local + foreign) for
93 // Foreign session data may be empty. In this case we only count tabs in
104 tab_count += win_it->second->tabs.size();
127 SyncTimingHelper::PrintResult("tabs", "add_tabs", dt);
133 SyncTimingHelper::PrintResult("tabs", "update_tabs", dt);
137 // New tab page remains open on profile 0 after closing all tabs
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
history_menu_bridge.h 49 // all the tabs within that closed window. By convention, these submenu items
89 // retains this. During a rebuild flood (if the user closes a lot of tabs
102 // If the HistoryItem is a window, this will be the vector of tabs. Note
106 std::vector<HistoryItem*> tabs; member in struct:HistoryMenuBridge::HistoryItem
  /external/chromium_org/chrome/browser/ui/webui/ntp/
foreign_session_handler.cc 386 if (window.tabs.empty()) {
393 for (size_t i = 0; i < window.tabs.size(); ++i) {
395 if (SessionTabToValue(*window.tabs[i], tab_value.get())) {
397 window.tabs[i]->timestamp);
414 dictionary->Set("tabs", tab_values.release());
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
popup.js 111 chrome.tabs.query({active: true, windowId: currentWindow.id},
113 chrome.tabs.executeScript(
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
ui.js 126 this._tabs = $(this).tabs({
136 var tabIndex = this._tabs.tabs('option', 'selected');
203 this._tabs.tabs('enable', tabIndex);
204 this._tabs.tabs('select', tabIndex);
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/
results.css 77 .ui-tabs .ui-tabs-panel.results-detail {
  /external/smack/asmack-master/
build.bash 359 local tabs
361 tabs="\t\t"
363 tabs="\t"
365 echo -e "${i}:${tabs}${COMPONENT_VERSIONS[$i]}" >> $release_readme
  /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...]
UI.java 63 public void updateTabs(List<Tab> tabs);
XLargeUi.java 89 // We need to update the tabs with this change
160 public void updateTabs(List<Tab> tabs) {
161 mTabBar.updateTabs(tabs);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/css/
bootstrap.css     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
accessibility_api_handler.js 178 chrome.tabs.onCreated.addListener(goog.bind(function(tab) {
189 chrome.tabs.onRemoved.addListener(goog.bind(function(tab) {
196 chrome.tabs.onActivated.addListener(goog.bind(function(activeInfo) {
200 chrome.tabs.get(activeInfo.tabId, goog.bind(function(tab) {
216 chrome.tabs.onUpdated.addListener(goog.bind(function(tabId, selectInfo) {
220 chrome.tabs.get(tabId, goog.bind(function(tab) {
240 chrome.tabs.getSelected(windowId, goog.bind(function(tab) {
716 chrome.tabs.query({'active': true, 'currentWindow': true},
717 goog.bind(function(tabs) {
718 if (tabs.length < 1)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 72 var tabs = {};
73 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
76 changeInfo.url != tabs[tabId] &&
78 chrome.tabs.create({ 'url' : changeInfo.url }, function(tab) {
79 tabs[tab.id] = tab.url;
80 chrome.tabs.remove(tabId);
103 chrome.tabs.create({ 'url' :chrome.extension.getURL(this.callback_page) });
270 chrome.tabs.query({active: true, currentWindow: true}, function (tabs) {
271 chrome.tabs.remove(tabs[0].id)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 72 var tabs = {};
73 chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
76 changeInfo.url != tabs[tabId] &&
78 chrome.tabs.create({ 'url' : changeInfo.url }, function(tab) {
79 tabs[tab.id] = tab.url;
80 chrome.tabs.remove(tabId);
103 chrome.tabs.create({ 'url' :chrome.extension.getURL(this.callback_page) });
270 chrome.tabs.query({active: true, currentWindow: true}, function (tabs) {
271 chrome.tabs.remove(tabs[0].id)
    [all...]
background.js 48 chrome.tabs.create({ 'url' : 'contacts.html'});
  /external/okhttp/website/static/
bootstrap-combined.min.css     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
certificate_manager_dialog.js 21 var subpagesNavTabs = document.querySelectorAll('.subpages-nav-tabs');
  /external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
popup.js 14 chrome.tabs.create({url: 'options.html'});
  /external/chromium_org/chrome/common/extensions/docs/examples/api/processes/process_monitor/
popup.js 14 "<td>Tabs</td>" +
51 "<td>" + process.tabs + "</td>" +
  /external/chromium_org/tools/perf/profile_creators/
extensions_profile_creator.py 208 # caches. Extensions may open tabs as part of the install process.
209 # Phase 2: When the second page loads, page_runner closes all tabs -
221 for i in xrange(len(tab.browser.tabs)):
222 t = tab.browser.tabs[i]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner.py 100 if len(self.browser.tabs) == 0:
101 self.browser.tabs.New()
105 while len(self.browser.tabs) > 1:
106 self.browser.tabs[-1].Close()
112 # navigation was silently cancelled when |self.browser.tabs[0]| was
117 self.browser.tabs[0].WaitForDocumentReadyStateToBeComplete()

Completed in 532 milliseconds

1 2 3 4 56 7 8 91011>>