HomeSort by relevance Sort by last modified time
    Searched refs:tabs (Results 151 - 175 of 349) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner.py 68 if len(self.browser.tabs) == 0:
69 self.browser.tabs.New()
72 while len(self.browser.tabs) > 1:
73 self.browser.tabs[-1].Close()
76 self.tab = self.browser.tabs[0]
  /external/chromium/chrome/browser/sync/glue/
session_model_associator.cc 15 #include "chrome/browser/tabs/tab_strip_model.h"
118 // Make sure the browser has tabs and a window. Browsers destructor
129 (*i)->tab_count() << " tabs.";
141 // Store the order of tabs.
154 // Only add a window if it contains valid tabs.
191 const std::vector<TabContents*>& tabs) {
193 for (std::vector<TabContents*>::const_iterator i = tabs.begin();
194 i != tabs.end();
591 session_window->tabs.resize(specifics.tab_size());
594 session_window->tabs[i]
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
background.js 683 chrome.tabs.getAllInWindow(null, function(tabs) {
684 for (var i = 0, tab; tab = tabs[i]; i++) {
686 chrome.tabs.update(tab.id, {selected: true});
691 chrome.tabs.create({url: GOOGLE_CALENDAR_URL});
720 chrome.tabs.onUpdated.addListener(onTabUpdated);
  /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
227 // to restore, the tabs are added to it, otherwise a new browser is created.
294 // SessionWindow based on the actual tabs that were restored.
302 // Returns the tab with the specified id in tabs. If a tab does not exist,
305 IdToSessionTab* tabs);
318 // . Deletes and removes any windows with no tabs or windows with types other
322 // . Sorts the tabs in windows with valid tabs based on the tabs
328 // Adds tabs to their parent window based on the tab's window_id. Thi
    [all...]
session_restore.cc 36 #include "chrome/browser/ui/tabs/tab_strip_model.h"
83 // TabLoader is responsible for loading tabs after session restore creates
84 // tabs. New tabs are loaded after the current tab finishes loading, or a delay
91 // TabLoader is loading, it will schedule its tabs to get loaded by the same
127 // Loads the next tab. If there are no more tabs to load this deletes itself,
142 // the set of tabs to load and list of tabs we're waiting to get a load
172 // The set of tabs we've initiated loading on. This does NOT include the
173 // selected tabs
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/static/css/
site.css 563 /* Tabbed pane with header (tabs) and content */
564 tabs {
568 tabs header {
577 tabs header.unselected {
582 tabs content {
588 tabs content.unselected {
591 tabs content pre {
  /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.
49 // Creates a Tab object (see chrome/common/extensions/api/tabs.json) with
85 extensions::api::tabs::Tab* tab);
123 // 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
88 // retains this. During a rebuild flood (if the user closes a lot of tabs
101 // If the HistoryItem is a window, this will be the vector of tabs. Note
105 std::vector<HistoryItem*> tabs; member in struct:HistoryMenuBridge::HistoryItem
  /external/chromium_org/chrome/browser/ui/webui/ntp/
foreign_session_handler.cc 380 if (window.tabs.empty()) {
387 for (size_t i = 0; i < window.tabs.size(); ++i) {
389 if (SessionTabToValue(*window.tabs[i], tab_value.get())) {
391 window.tabs[i]->timestamp);
407 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/styles/
results.css 62 .ui-tabs .ui-tabs-panel.results-detail {
  /external/chromium_org/tools/telemetry/telemetry/core/
tab_unittest.py 49 new_tab = self._browser.tabs.New()
  /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);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/css/
bootstrap.css     [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/chromium_org/chrome/browser/android/
foreign_session_helper.cc 50 for (std::vector<SessionTab*>::const_iterator tab_it = window->tabs.begin();
51 tab_it != window->tabs.end(); ++tab_it) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistoryFilter/
historyFilterUrls.js 8 chrome.tabs.create({
  /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 13 "<td>Tabs</td>" +
50 "<td>" + process.tabs + "</td>" +

Completed in 1066 milliseconds

1 2 3 4 5 67 8 91011>>