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

  /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/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/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/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...]
  /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...]
  /packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java 54 private enum Tab {
74 private Tab(String tag, int label, int view, int progress, int list, boolean checkbox) {
148 addTab(Tab.SYSTEM);
149 // TODO add Install button on Tab.USER to go to CertInstaller like KeyChainActivity
150 addTab(Tab.USER);
154 private void addTab(Tab tab) {
155 TabHost.TabSpec systemSpec = mTabHost.newTabSpec(tab.mTag)
156 .setIndicator(getActivity().getString(tab.mLabel))
157 .setContent(tab.mView)
    [all...]
  /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/Browser/src/com/android/browser/
Tab.java 90 class Tab implements PictureListener {
93 private static final String LOGTAG = "Tab";
131 // The tab ID
146 // tab.
148 // Parent Tab. This is the Tab that created this Tab, or null if the Tab was
150 private Tab mParent;
151 // Tab that constructed by this Tab. This is used when this Tab i
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 616 milliseconds