HomeSort by relevance Sort by last modified time
    Searched defs:Tab (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium/chrome/browser/tabs/
pinned_tab_test_utils.cc 7 typedef BrowserInit::LaunchWithProfile::Tab Tab;
11 std::string TabToString(const Tab& tab) {
12 return tab.url.spec() + ":" + (tab.is_app ? "app" : "") + ":" +
13 (tab.is_pinned ? "pinned" : "") + ":" + tab.app_id;
20 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values) {
pinned_tab_codec.cc 20 typedef BrowserInit::LaunchWithProfile::Tab Tab;
38 // Adds a DictionaryValue to |values| representing the pinned tab at the
67 // Invokes EncodePinnedTab for each pinned tab in browser.
74 // Decodes the previously written values in |value| to |tab|, returning true
76 static bool DecodeTab(const DictionaryValue& value, Tab* tab) {
77 tab->is_app = false;
82 tab->url = GURL(url_string);
84 if (value.GetString(kAppID, &(tab->app_id))
129 Tab tab; local
    [all...]
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service.cc 20 type(TAB),
30 // Tab ------------------------------------------------------------------------
32 TabRestoreService::Tab::Tab()
33 : Entry(TAB),
40 TabRestoreService::Tab::~Tab() {
tab_restore_service_helper.h 37 typedef TabRestoreService::Tab Tab;
41 // Provides a way for the client to add behavior to the tab restore service
86 Tab* RemoveTabEntryById(SessionID::id_type id);
102 // tab/window closes from the previous session are added to the back.
111 // identifies a tab, then the iterator position of the Window in which the Tab
121 // Populates the tab's navigations from the NavigationController, and its
123 void PopulateTab(Tab* tab,
    [all...]
tab_restore_service.h 31 // tabs and windows. When a tab is closed
32 // TabRestoreService::CreateHistoricalTab is invoked and a Tab is created to
33 // represent the tab. Similarly, when a browser is closed, BrowserClosing is
36 // To restore a tab/window from the TabRestoreService invoke RestoreEntryById
52 TAB,
68 // The time when the window or tab was closed.
77 // Represents a previously open tab.
78 struct Tab : public Entry {
79 Tab();
80 virtual ~Tab();
    [all...]
persistent_tab_restore_service_browsertest.cc 37 typedef TabRestoreService::Tab Tab;
126 // Adds a window with one tab and url to the profile's session service.
127 // If |pinned| is true, the tab is marked as pinned in the session service.
147 // is configured with a single window with a single tab pointing at url1_ by
149 // tab is marked as pinned in the session service.
207 // Have the service record the tab.
215 ASSERT_EQ(TabRestoreService::TAB, entry->type);
216 Tab* tab = static_cast<Tab*>(entry) local
275 Tab* tab = static_cast<Tab*>(entry); local
300 Tab* tab = static_cast<Tab*>(entry); local
491 Tab* tab = static_cast<Tab*>(entry); local
533 Tab* tab = static_cast<Tab*>(entry); local
595 Tab* tab = static_cast<Tab*>(entry); local
638 Tab* tab = new Tab(); local
658 Tab* tab = new Tab(); local
    [all...]
  /external/chromium/chrome/browser/ui/
browser_init.h 79 struct Tab {
80 Tab();
81 ~Tab();
86 // If true, the tab corresponds to an app an |app_id| gives the id of the
90 // True if the is tab pinned.
120 // Creates a tab for each of the Tabs in |tabs|. If browser is non-null
127 const std::vector<Tab>& tabs);
139 // If the app is specified to start in a tab, or IsAppLaunch is false,
144 // should open in a tab, do so.
168 // Adds a Tab to |tabs| for each url in |urls| that doesn't already exis
    [all...]
browser_init.cc 259 // called during shutdown and |tab| can be NULL.
260 TabContents* tab = browser->GetSelectedTabContents();
261 if (!tab || tab->infobar_count() > 0)
263 tab->AddInfoBar(new DefaultBrowserInfoBarDelegate(tab));
436 std::vector<BrowserInit::LaunchWithProfile::Tab>* tabs) {
438 BrowserInit::LaunchWithProfile::Tab tab; local
439 tab.is_pinned = false
952 BrowserInit::LaunchWithProfile::Tab tab; local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/
__init__.py 13 from telemetry.core.tab import Tab
  /external/chromium_org/tools/telemetry/telemetry/core/
tab.py 8 class Tab(web_contents.WebContents):
9 """Represents a tab in the browser
11 The important parts of the Tab object are in the runtime and page objects.
13 # Navigates the tab to a given url.
14 tab.Navigate('http://www.google.com/')
16 # Evaluates 1+1 in the tab's JavaScript context.
17 tab.Evaluate('1+1')
20 super(Tab, self).__init__(inspector_backend)
23 super(Tab, self).__del__()
27 """The browser in which this tab resides.""
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
tab.h 24 // A View that renders a Tab, either in a TabStrip or in a DraggedTabView.
27 class Tab : public BaseTab {
32 explicit Tab(TabController* controller);
33 virtual ~Tab();
35 // Start/stop the mini-tab title animation.
39 // Set the background offset used to match the image in the inactive tab
45 // Returns the minimum possible size of a single unselected Tab.
47 // Returns the minimum possible size of a selected Tab. Selected tabs must
51 // Returns the preferred size of a single Tab, assuming space is
76 // Paint various portions of the Tab
    [all...]
tab.cc 5 #include "chrome/browser/ui/views/tabs/tab.h"
43 // Vertical adjustment to the favicon when the tab has a large icon.
46 // When a non-mini-tab becomes a mini-tab the width of the tab animates. If
47 // the width of a mini-tab is >= kMiniTabRendererAsNormalTabWidth then the tab
48 // is rendered as a normal tab. This is done to avoid having the title
49 // immediately disappear when transitioning a tab from normal to mini-tab
    [all...]
  /external/chromium_org/ui/views/controls/tabbed_pane/
tabbed_pane.cc 33 // The tab view shown in the tab strip.
34 class Tab : public View {
36 Tab(TabbedPane* tabbed_pane, const string16& title, View* contents);
37 virtual ~Tab();
68 // The content view associated with this tab.
71 DISALLOW_COPY_AND_ASSIGN(Tab);
74 // The tab strip shown above the tab contents.
91 Tab::Tab(TabbedPane* tabbed_pane, const string16& title, View* contents
307 Tab* tab = GetTabAt(index); local
    [all...]
  /external/chromium/chrome/browser/sessions/
tab_restore_service.cc 43 type(TAB),
60 // . When the user closes a tab a command of type
61 // kCommandSelectedNavigationInTab is written identifying the tab and
62 // the selected index, then a kCommandPinnedState command if the tab was
63 // pinned and kCommandSetExtensionAppID if the tab has an app id. This is
67 // is written out and followed by n tab closed sequences (as previoulsy
97 // Payload used for the start of a tab close. This is the old struct that is
110 // Payload used for the start of a tab close.
115 // Only written if the tab is pinned.
143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin()
338 Tab* tab = static_cast<Tab*>(entry); local
351 const Tab& tab = window->tabs[tab_i]; local
362 RecordAppLaunch(profile(), tab); local
375 const Tab& tab = *tab_i; local
462 Tab* tab = static_cast<Tab*>(entry); local
926 RecordAppLaunch(profile(), tab); local
953 Tab* tab = static_cast<Tab*>(*i); local
990 Tab* tab = static_cast<Tab*>(entry); local
1025 Tab& tab = window->tabs.back(); local
    [all...]
tab_restore_service.h 27 // tabs and windows. When a tab is closed
28 // TabRestoreService::CreateHistoricalTab is invoked and a Tab is created to
29 // represent the tab. Similarly, when a browser is closed, BrowserClosing is
32 // To restore a tab/window from the TabRestoreService invoke RestoreEntryById
48 TAB,
64 // The time when the window or tab was closed.
73 // Represents a previously open tab.
74 struct Tab : public Entry {
75 Tab();
76 virtual ~Tab();
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab.h 40 // A View that renders a Tab, either in a TabStrip or in a DraggedTabView.
43 class Tab : public TabAudioIndicator::Delegate,
52 explicit Tab(TabController* controller);
53 virtual ~Tab();
57 // Used to set/check whether this Tab is being animated closed.
75 // Returns true if this tab is the active tab.
78 // Returns true if the tab is selected.
93 // Start/stop the mini-tab title animation.
97 // Set the background offset used to match the image in the inactive tab
    [all...]
tab.cc 5 #include "chrome/browser/ui/views/tabs/tab.h"
58 // Padding around the "content" of a tab, occupied by the tab border graphics.
128 // Height of the shadow at the top of the tab image assets.
146 // Size of icon used for throbber and favicon next to tab title.
175 // Additional vertical offset for title text relative to top of tab.
181 // Additional vertical offset for close button relative to top of tab.
188 // When a non-mini-tab becomes a mini-tab the width of the tab animates. I
    [all...]
  /external/clang/unittests/Format/
FormatTest.cpp     [all...]
  /frameworks/base/core/java/android/app/
ActionBar.java 76 * Tab navigation mode. Instead of static title text this mode
505 * Create and return a new {@link Tab}.
506 * This tab will not be included in the action bar until it is added.
514 * @return A new Tab
516 * @see #addTab(Tab)
518 public abstract Tab newTab();
521 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list.
522 * If this is the first tab to be added it will become the selected tab
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBar.java 86 * Tab navigation mode. Instead of static title text this mode presents a series of tabs for
485 * Create and return a new {@link Tab}. This tab will not be included in the action bar until it
494 * @return A new Tab
495 * @see #addTab(Tab)
497 public abstract Tab newTab();
500 * Add a tab for use in tabbed navigation mode. The tab will be added at the end of the list. If
501 * this is the first tab to be added it will become the selected tab
    [all...]
  /external/chromium_org/remoting/webapp/
jscompiler_hacks.js 180 /** @param {function(chrome.Tab):void} callback */
184 chrome.Tab = function() {
  /frameworks/base/core/java/com/android/internal/widget/
ScrollingTabContainerView.java 48 * This widget implements the dynamic action bar tab behavior that can change
126 // Recenter the tab display if we're at a new (scrollable) size.
280 private TabView createTabView(ActionBar.Tab tab, boolean forAdapter) {
281 final TabView tabView = new TabView(getContext(), tab, forAdapter);
297 public void addTab(ActionBar.Tab tab, boolean setSelected) {
298 TabView tabView = createTabView(tab, false);
312 public void addTab(ActionBar.Tab tab, int position, boolean setSelected)
420 final ActionBar.Tab tab = mTab; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java 69 private enum Tab {
89 private Tab(String tag, int label, int view, int progress, int list, boolean checkbox) {
170 addTab(Tab.SYSTEM);
171 // TODO add Install button on Tab.USER to go to CertInstaller like KeyChainActivity
172 addTab(Tab.USER);
175 mTabHost.setCurrentTabByTag(Tab.USER.mTag);
180 private void addTab(Tab tab) {
181 TabHost.TabSpec systemSpec = mTabHost.newTabSpec(tab.mTag)
182 .setIndicator(getActivity().getString(tab.mLabel)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CodeMirrorTextEditor.js 88 "Tab": "defaultTab",
89 "Shift-Tab": "indentLess",
282 extraKeys.Tab = function(codeMirror)
369 rules += ".cm-tab:before { display: block !important; }\n";
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java 87 class Tab implements PictureListener {
90 private static final String LOGTAG = "Tab";
128 // The tab ID
143 // tab.
145 // Parent Tab. This is the Tab that created this Tab, or null if the Tab was
147 private Tab mParent;
148 // Tab that constructed by this Tab. This is used when this Tab i
    [all...]

Completed in 1498 milliseconds

1 2