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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/views/frame/
global_menu_bar_x11.cc 299 // If the HistoryItem is a window, this will be the vector of tabs. Note
303 std::vector<HistoryItem*> tabs; member in struct:GlobalMenuBarX11::HistoryItem
657 std::vector<TabRestoreService::Tab>& tabs = entry_win->tabs; local
658 if (tabs.empty())
665 std::string title = item->tabs.size() == 1 ?
670 base::IntToString16(item->tabs.size()));
695 // Loop over the window's tabs and add them to the submenu.
698 for (iter = tabs.begin(); iter != tabs.end(); ++iter)
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
dragged_tab_controller_gtk.cc 5 #include "chrome/browser/ui/gtk/tabs/dragged_tab_controller_gtk.h"
18 #include "chrome/browser/ui/gtk/tabs/dragged_view_gtk.h"
19 #include "chrome/browser/ui/gtk/tabs/tab_strip_gtk.h"
20 #include "chrome/browser/ui/tabs/tab_strip_model.h"
21 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h"
58 const std::vector<TabGtk*>& tabs)
64 DCHECK(!tabs.empty());
65 DCHECK(std::find(tabs.begin(), tabs.end(), source_tab) != tabs.end())
804 std::vector<TabGtk*> tabs = GetTabsMatchingDraggedContents( local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
PieControl.java 147 View tabs = makeTabsView(); local
148 mShowTabs = new PieItem(tabs, 1);
242 final List<Tab> tabs = mUiController.getTabs(); local
244 mTabAdapter.setTabs(tabs);
290 public void setTabs(List<Tab> tabs) {
291 mTabs = tabs;
  /external/proguard/src/proguard/gui/
ProGuardGUI.java 587 TabbedPane tabs = new TabbedPane(); local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ForeignSessionHelper.java 16 * This class exposes to Java information about sessions, windows, and tabs on the user's synced
61 public final List<ForeignSessionTab> tabs = new ArrayList<ForeignSessionTab>(); field in class:ForeignSessionHelper.ForeignSessionWindow
107 window.tabs.add(tab);
  /external/chromium_org/chrome/browser/resources/history/
other_devices.js 6 * @fileoverview The section of the history page that shows tabs from sessions
163 * @param {int} maxNumTabs The maximum number of tabs to display.
206 * Marks tabs as hidden or not in our session based on the given searchText.
214 for (var j = 0; j < win.tabs.length; j++) {
215 var tab = win.tabs[j];
230 * Create the DOM tree representing the tabs and windows of this device.
231 * @param {int} maxNumTabs The maximum number of tabs to display.
232 * @return {Element} A single div containing the list of tabs & windows.
250 for (var j = 0; j < win.tabs.length; j++) {
251 var tab = win.tabs[j]
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/
popup.js 17 chrome.tabs.insertCSS({code: items.css}, function() {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/
background.js 151 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
152 chrome.tabs.update(tabs[0].id, {url: url});
  /external/chromium_org/chrome/test/telemetry/chromeos/
login_unittest.py 57 self.assertEquals(1, len(b.tabs))
58 self.assertTrue(b.tabs[0].url)
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
form_based_credentials_backend_unittest_base.py 43 ret = b.credentials.LoginNeeded(b.tabs[0], self._credentials_type)
63 tab = b.tabs[0]
  /external/chromium/chrome/browser/sessions/
session_types.cc 108 STLDeleteElements(&tabs);
session_types.h 116 // tabs in SessionWindow.tabs.
159 // Index of the selected tab in tabs; -1 if no tab is selected. After restore
160 // this value is guaranteed to be a valid index into tabs.
164 // tabs. When done creating though, this is set to the index in
165 // tabs.
182 // The tabs, ordered by visual order.
183 std::vector<SessionTab*> tabs; member in struct:SessionWindow
session_service.h 33 // and tabs so that they can be restored at a later date. The state of the
202 // to restore, the tabs are added to it, otherwise a new browser is created.
260 // SessionWindow based on the actual tabs that were restored.
268 // Returns the tab with the specified id in tabs. If a tab does not exist,
271 IdToSessionTab* tabs);
283 // . Deletes and removes any windows with no tabs or windows with types other
287 // . Sorts the tabs in windows with valid tabs based on the tabs
293 // Adds tabs to their parent window based on the tab's window_id. Thi
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
history_menu_bridge.h 47 // all the tabs within that closed window. By convention, these submenu items
85 // retains this. During a rebuild flood (if the user closes a lot of tabs
98 // If the HistoryItem is a window, this will be the vector of tabs. Note
102 std::vector<HistoryItem*> tabs; member in struct:HistoryMenuBridge::HistoryItem
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service.h 31 // tabs and windows. When a tab is closed
115 // The tabs that comprised the window, in order.
116 std::vector<Tab> tabs; member in struct:TabRestoreService::Window
148 // of tabs has changed.
181 // Loads the tabs and previous session. This does nothing if the tabs
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
bg.js 81 "tabCreated": chrome.tabs.onCreated,
82 "tabMoved": chrome.tabs.onMoved,
83 "tabRemoved": chrome.tabs.onRemoved,
84 "tabSelectionChanged": chrome.tabs.onSelectionChanged,
85 "tabAttached": chrome.tabs.onAttached,
86 "tabDetached": chrome.tabs.onDetached,
87 "tabNavigated": chrome.tabs.onUpdated,
351 chrome.tabs.get(tabId, function(tab) {
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
ui.js 88 this._tabs = $(this).tabs({
94 var tabIndex = this._tabs.tabs('option', 'selected');
109 $('.ui-tabs-nav a').bind('mouseup', function(event) {
166 this._tabs.tabs('enable', tabIndex);
167 this._tabs.tabs('select', tabIndex);
  /external/chromium/chrome/browser/sync/glue/
session_model_associator_unittest.cc 26 win.tabs.push_back(tab.release());
31 win.tabs[0]->navigations.push_back(nav);
67 ASSERT_EQ(1U, win->tabs.size());
  /external/chromium/chrome/browser/tabs/
tab_strip_model.cc 5 #include "chrome/browser/tabs/tab_strip_model.h"
23 #include "chrome/browser/tabs/tab_strip_model_delegate.h"
24 #include "chrome/browser/tabs/tab_strip_model_order_controller.h"
120 // Force app tabs to be pinned.
272 // This would result in mini tabs mixed with non-mini tabs. We don't allow
290 // To maintain that all mini-tabs occur before non-mini-tabs we move them
297 // We're being told to drag mini-tabs to an invalid location. Adjust the
298 // index such that non-mini-tabs end up at a location as though we coul
822 std::vector<TabContentsWrapper*> tabs; local
839 std::vector<TabContentsWrapper*> tabs; local
1113 std::vector<TabContentsWrapper*> tabs; local
    [all...]
  /external/chromium/chrome/browser/ui/touch/tabs/
touch_tab_strip.cc 5 #include "chrome/browser/ui/touch/tabs/touch_tab_strip.h"
10 #include "chrome/browser/ui/touch/tabs/touch_tab.h"
12 #include "chrome/browser/ui/views/tabs/browser_tab_strip_controller.h"
38 // The animations may reference the tabs. Shut down the animation before we
39 // delete the tabs.
44 // The children (tabs) may callback to us from their destructor. Delete them
155 void TouchTabStrip::LayoutDraggedTabsAt(const std::vector<BaseTab*>& tabs,
164 const std::vector<BaseTab*>& tabs,
170 int TouchTabStrip::GetSizeNeededForTabs(const std::vector<BaseTab*>& tabs) {
289 // Tabs are painted in reverse order, so they stack to the left
    [all...]
  /external/chromium/chrome/browser/ui/webui/
foreign_session_handler.cc 222 if (window.tabs.empty()) {
227 for (size_t i = 0; i < window.tabs.size(); ++i) {
229 if (SessionTabToValue(*window.tabs[i], tab_value.get()))
238 dictionary->Set("tabs", tab_values.release());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gmail/
background.js 252 chrome.tabs.getAllInWindow(undefined, function(tabs) {
253 for (var i = 0, tab; tab = tabs[i]; i++) {
257 chrome.tabs.update(tab.id, {selected: true});
263 chrome.tabs.create({url: getGmailUrl()});
328 chrome.tabs.onUpdated.addListener(function(_, details) {
  /external/chromium_org/chrome/browser/chromeos/policy/
device_local_account_browsertest.cc 47 #include "chrome/browser/ui/tabs/tab_strip_model.h"
354 TabStripModel* tabs = browser->tab_strip_model(); local
355 ASSERT_TRUE(tabs);
357 EXPECT_EQ(expected_tab_count, tabs->count());
358 for (int i = 0; i < expected_tab_count && i < tabs->count(); ++i) {
360 tabs->GetWebContentsAt(i)->GetVisibleURL());
  /external/chromium_org/chrome/browser/ui/webui/memory_internals/
memory_internals_proxy.cc 315 base::ListValue* tabs; local
316 if (!process->GetList("history", &tabs)) {
317 tabs = new base::ListValue();
318 process->Set("history", tabs);
322 tabs->Append(tab);
  /external/chromium_org/chrome/installer/util/
master_preferences_unittest.cc 199 TabsVector tabs = prefs.GetFirstRunTabs(); local
200 ASSERT_EQ(3, tabs.size());
201 EXPECT_EQ("http://google.com/f1", tabs[0]);
202 EXPECT_EQ("https://google.com/f2", tabs[1]);
203 EXPECT_EQ("new_tab_page", tabs[2]);

Completed in 865 milliseconds

1 2 3 4 56 7 8 91011>>