Searched refs:Tab (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium/chrome/browser/tabs/
H A Dpinned_tab_test_utils.cc7 typedef BrowserInit::LaunchWithProfile::Tab Tab; typedef
11 std::string TabToString(const Tab& tab) {
20 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values) {
H A Dpinned_tab_test_utils.h21 const std::vector<BrowserInit::LaunchWithProfile::Tab>& values);
H A Dpinned_tab_codec.h33 static std::vector<BrowserInit::LaunchWithProfile::Tab> ReadPinnedTabs(
H A Dpinned_tab_codec.cc20 typedef BrowserInit::LaunchWithProfile::Tab Tab; typedef
76 static bool DecodeTab(const DictionaryValue& value, Tab* tab) {
115 std::vector<Tab> PinnedTabCodec::ReadPinnedTabs(Profile* profile) {
116 std::vector<Tab> results;
129 Tab tab;
/external/chromium/chrome/browser/ui/webui/
H A Dvalue_helper.h16 static bool TabToValue(const TabRestoreService::Tab& tab,
H A Dvalue_helper.cc11 const TabRestoreService::Tab& tab,
/external/chromium/chrome/browser/ui/views/tabs/
H A Dtab.cc63 Tab::TabImage Tab::tab_alpha_ = {0};
64 Tab::TabImage Tab::tab_active_ = {0};
65 Tab::TabImage Tab::tab_inactive_ = {0};
93 const char Tab::kViewClassName[] = "browser/tabs/Tab";
96 // Tab, public:
98 Tab function in class:Tab
[all...]
H A Dtab.h24 // A View that renders a Tab, either in a TabStrip or in a DraggedTabView.
27 class Tab : public BaseTab { class in inherits:BaseTab
32 explicit Tab(TabController* controller);
33 virtual ~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
87 // Returns whether the Tab should display a favicon.
90 // Returns whether the Tab shoul
[all...]
H A Dtab_strip.cc121 current_unselected_width_(Tab::GetStandardSize().width()),
122 current_selected_width_(Tab::GetStandardSize().width()),
187 // All other regions, including the new Tab button, should be considered part
246 Tab* tab = GetTabAtModelIndex(model_index);
261 Tab* tab = new Tab(NULL);
273 Tab* active_tab = NULL;
274 std::vector<Tab*> tabs_dragging;
275 std::vector<Tab*> selected_tabs;
280 // the model will be different to this object, e.g. when a Tab i
[all...]
H A Dtab_strip.h18 class Tab;
37 // - It takes part in Tab Drag & Drop with Tab, TabDragHelper and
148 // Retrieves the Tab at the specified index. Remember, the specified index
150 Tab* GetTabAtTabDataIndex(int tab_data_index) const;
159 Tab* GetTabAtModelIndex(int model_index) const;
164 // -- Tab Resize Layout -----------------------------------------------------
215 // stable representations of Tab positions.
223 // Calculates the available width for tabs, assuming a Tab is to be closed.
224 int GetAvailableWidthForTabs(Tab* last_ta
[all...]
/external/chromium/chrome/browser/sessions/
H A Dtab_restore_service.h28 // TabRestoreService::CreateHistoricalTab is invoked and a Tab is created to
74 struct Tab : public Entry { struct in class:TabRestoreService
75 Tab();
76 virtual ~Tab();
109 std::vector<Tab> tabs;
128 // Creates a Tab to represent |tab| and notifies observers the list of
198 void PopulateTab(Tab* tab,
217 // tab, then the iterator position of the Window in which the Tab resides is
226 void ScheduleCommandsForTab(const Tab& tab, int selected_index);
247 int GetSelectedNavigationIndexToPersist(const Tab
[all...]
H A Dtab_restore_service.cc143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin();
155 void RecordAppLaunch(Profile* profile, const TabRestoreService::Tab& tab) {
168 TabRestoreService::Tab::Tab() function in class:TabRestoreService::Tab
176 TabRestoreService::Tab::~Tab() {
226 scoped_ptr<Tab> local_tab(new Tab());
243 window->tabs.push_back(Tab());
260 // http://crbug.com/56744. Copy the Tab becaus
[all...]
H A Dtab_restore_service_browsertest.cc134 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry);
156 tab = static_cast<TabRestoreService::Tab*>(entry);
190 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry);
215 TabRestoreService::Tab* tab = static_cast<TabRestoreService::Tab*>(entry);
229 tab = static_cast<TabRestoreService::Tab*>(entry);
259 const TabRestoreService::Tab* restored_tab =
260 static_cast<const TabRestoreService::Tab*>(restored_entr
[all...]
H A Dsession_restore_browsertest.cc143 std::vector<TabRestoreService::Tab>::const_iterator it = window->tabs.begin();
145 const TabRestoreService::Tab& tab = *it;
178 const TabRestoreService::Tab* tab =
179 static_cast<TabRestoreService::Tab*>(service->entries().front());
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtab_control.js9 * An individual tab within a tab control is, unsurprisingly, a Tab.
12 * Tab titles are based on the label attribute of each child:
15 * <div label='Tab 1'>Hello</div>
16 * <div label='Tab 2'>World</div>
36 var Tab = cr.ui.define('div');
37 Tab.prototype = {
48 cr.defineProperty(Tab, 'label', cr.PropertyKind.ATTR);
54 cr.defineProperty(Tab, 'selected', cr.PropertyKind.BOOL_ATTR);
143 throw Error('Tab is already part of this control.');
144 if (!(tab instanceof Tab))
[all...]
H A Dprofiling_view.js14 * @extends {gpu.Tab}
16 ProfilingView = cr.ui.define(gpu.Tab);
19 __proto__: gpu.Tab.prototype,
H A Dinfo_view.js15 * @extends {Tab}
17 var InfoView = cr.ui.define(gpu.Tab);
20 __proto__: gpu.Tab.prototype,
23 gpu.Tab.prototype.decorate.apply(this);
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dtabs.js8 * Returns the TabBox for a Tab or a TabPanel.
9 * @param {Tab|TabPanel} el The tab or tabpanel element.
17 * Set hook for the selected property for Tab and TabPanel.
21 * @this {Tab|TabPanel}
37 TAB: Tab,
81 * Callback for when a Tab or TabPanel changes its selected property.
166 var Tab = cr.ui.define('tab');
167 Tab.prototype = {
181 cr.defineProperty(Tab, 'selected', cr.PropertyKind.BOOL_ATTR);
216 Tab
[all...]
/external/chromium/chrome/browser/ui/
H A Dbrowser_init.h79 struct Tab { struct in class:BrowserInit::LaunchWithProfile
80 Tab();
81 ~Tab();
127 const std::vector<Tab>& tabs);
168 // Adds a Tab to |tabs| for each url in |urls| that doesn't already exist
171 std::vector<Tab>* tabs);
H A Dbrowser_init.cc436 std::vector<BrowserInit::LaunchWithProfile::Tab>* tabs) {
438 BrowserInit::LaunchWithProfile::Tab tab;
482 const std::vector<BrowserInit::LaunchWithProfile::Tab>& autolaunch_tabs) {
611 // BrowserInit::LaunchWithProfile::Tab ----------------------------------------
613 BrowserInit::LaunchWithProfile::Tab::Tab() : is_app(false), is_pinned(true) {} function in class:BrowserInit::LaunchWithProfile::Tab
615 BrowserInit::LaunchWithProfile::Tab::~Tab() {}
912 std::vector<Tab> tabs = PinnedTabCodec::ReadPinnedTabs(profile_);
941 std::vector<Tab>* tab
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DGoToLineDialog.js98 if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Tab.code) {
H A DKeyboardShortcut.js53 Tab: { code: 9, name: { mac: "\u21e5", other: "<Tab>" } },
/external/chromium/chrome/browser/
H A Djumplist_win.h138 bool AddTab(const TabRestoreService::Tab* tab,
/external/chromium/chrome/browser/ui/cocoa/
H A Dhistory_menu_bridge.h179 HistoryItem* HistoryItemForTab(const TabRestoreService::Tab& entry);
/external/qemu/
H A Dcurses_keys.h63 ['\t'] = 15, /* Tab */
144 [0x161] = 15 | SHIFT, /* Shift + Tab */
199 /* Control + i collides with Tab */
448 { "Tab", '\t' },

Completed in 458 milliseconds

12