/external/chromium/chrome/browser/automation/ |
automation_provider_json.cc | 81 int browser_index, tab_index; local 86 if (!args->GetInteger("tab_index", &tab_index)) { 87 *error = "'tab_index' missing or invalid"; 90 *tab = automation_util::GetTabContentsAt(browser_index, tab_index);
|
automation_provider.cc | 448 int tab_index; local 449 Browser* browser = Browser::GetBrowserForController(controller, &tab_index); 451 browser->ActivateTabAt(tab_index, true); [all...] |
testing_automation_provider.cc | 2385 int tab_index; local 2601 int tab_index; local 3249 int tab_index = 0; local 3547 int tab_index; local 3960 int tab_index = 0; local 4025 int tab_index = 0; local [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_devtools_bridge.cc | 53 int tab_index; local 56 &contents, &tab_index)) {
|
extension_processes_api.cc | 164 int tab_index = -1; local 166 NULL, NULL, &contents, &tab_index)) {
|
extension_browser_event_router.cc | 487 int tab_index; local 490 contents->tab_contents(), &tab_strip, &tab_index)) { 493 tab_strip->IsTabPinned(tab_index));
|
extension_tabs_module.cc | 68 int* tab_index, std::string* error_message); 103 int tab_index; local 104 if (ExtensionTabUtil::GetTabStripModel(contents, &tab_strip, &tab_index)) 105 return ExtensionTabUtil::CreateTabValue(contents, tab_strip, tab_index); 123 const TabContents* contents, TabStripModel* tab_strip, int tab_index) { 126 result->SetInteger(keys::kIndexKey, tab_index); 132 tab_strip && tab_index == tab_strip->active_index()); 134 tab_strip && tab_strip->IsTabPinned(tab_index)); 182 int* tab_index) { 185 DCHECK(tab_index); 383 int tab_index = -1; local 775 int tab_index = -1; local 808 int tab_index = -1; local 959 int tab_index = -1; local [all...] |
/external/chromium/chrome/browser/ |
accessibility_events.h | 131 int tab_index, 138 void SetTab(int tab_index, std::string tab_name) { 139 tab_index_ = tab_index; 143 int tab_index() const { return tab_index_; } function in class:AccessibilityTabInfo
|
browser_keyevents_browsertest.cc | 141 void SuppressEventByType(int tab_index, const wchar_t* type, bool suppress) { 142 ASSERT_LT(tab_index, browser()->tab_count()); 145 browser()->GetTabContentsAt(tab_index)->render_view_host(), 152 void SuppressEvents(int tab_index, bool keydown, bool keypress, 155 SuppressEventByType(tab_index, L"keydown", keydown)); 157 SuppressEventByType(tab_index, L"keypress", keypress)); 159 SuppressEventByType(tab_index, L"keyup", keyup)); 161 SuppressEventByType(tab_index, L"textInput", textinput)); 164 void SuppressAllEvents(int tab_index, bool suppress) { 165 SuppressEvents(tab_index, suppress, suppress, suppress, suppress) 358 int tab_index = browser()->active_index(); local 443 int tab_index = browser()->active_index(); local 488 int tab_index = browser()->active_index(); local 585 int tab_index = browser()->active_index(); local 750 int tab_index = browser()->active_index(); local 787 int tab_index = browser()->active_index(); local 828 int tab_index = browser()->active_index(); local [all...] |
/external/chromium/chrome/browser/ui/ |
browser_navigator.cc | 101 int tab_index = (start_index + i) % tab_count; local 103 params->browser->GetTabContentsWrapperAt(tab_index); 118 return tab_index;
|
browser.cc | 662 int tab_index = model->GetWrapperIndex(existing_tab); local 667 model->SetTabPinned(tab_index, true); 668 tab_index = model->GetWrapperIndex(existing_tab); 671 model->ActivateTabAt(tab_index, true); [all...] |
/external/chromium/chrome/browser/debugger/ |
devtools_window.cc | 253 int tab_index = (*it)->GetIndexOfController(&controller); local 254 if (tab_index != TabStripModel::kNoTab) { 256 *tab = tab_index;
|
/external/chromium/chrome/browser/sessions/ |
session_restore.cc | 203 int tab_index; local 204 Browser* browser = Browser::GetBrowserForController(tab, &tab_index); 205 if (browser && browser->active_index() != tab_index) { 636 const int tab_index = static_cast<int>(i - window.tabs.begin()); local 639 RestoreTab(tab, tab_index, browser, tab_index != selected_tab_index); 644 const int tab_index, 668 tab_index,
|
tab_restore_service.cc | 246 for (int tab_index = 0; tab_index < delegate->GetTabCount(); ++tab_index) { 248 tab_index, 250 &delegate->GetTabContentsAt(tab_index)->controller()); 905 int tab_index = -1; local 907 tab_index = tab.tabstrip_index; 915 if (tab_index < 0 || tab_index > delegate->GetTabCount()) { 916 tab_index = delegate->GetTabCount() [all...] |
/external/chromium/chrome/browser/ui/gtk/tabs/ |
tab_strip_gtk.cc | 1128 int tab_index = GetIndexOfTab(tab); local [all...] |