Home
last modified time | relevance | path

Searched refs:target_tab_strip (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/ui/views/tabs/
Dtab_drag_controller_interactive_uitest.cc581 TabStrip* target_tab_strip) { in DragToSeparateWindowStep2() argument
583 ASSERT_FALSE(target_tab_strip->IsDragSessionActive()); in DragToSeparateWindowStep2()
588 gfx::Point target_point(target_tab_strip->width() -1, in DragToSeparateWindowStep2()
589 target_tab_strip->height() / 2); in DragToSeparateWindowStep2()
590 views::View::ConvertPointToScreen(target_tab_strip, &target_point); in DragToSeparateWindowStep2()
1000 TabStrip* target_tab_strip, in DragAllToSeparateWindowStep2() argument
1003 ASSERT_FALSE(target_tab_strip->IsDragSessionActive()); in DragAllToSeparateWindowStep2()
1009 gfx::Point target_point(target_tab_strip->width() - 1, in DragAllToSeparateWindowStep2()
1010 target_tab_strip->height() / 2); in DragAllToSeparateWindowStep2()
1011 views::View::ConvertPointToScreen(target_tab_strip, &target_point); in DragAllToSeparateWindowStep2()
[all …]
/external/chromium_org/chrome/browser/extensions/
Dextension_tab_util.cc248 TabStripModel* target_tab_strip = target_browser->tab_strip_model(); in GetTabById() local
249 for (int i = 0; i < target_tab_strip->count(); ++i) { in GetTabById()
250 WebContents* target_contents = target_tab_strip->GetWebContentsAt(i); in GetTabById()
255 *tab_strip = target_tab_strip; in GetTabById()
/external/chromium/chrome/browser/extensions/
Dextension_tabs_module.cc232 TabStripModel* target_tab_strip = target_browser->tabstrip_model(); in GetTabById() local
233 for (int i = 0; i < target_tab_strip->count(); ++i) { in GetTabById()
235 target_tab_strip->GetTabContentsAt(i); in GetTabById()
240 *tab_strip = target_tab_strip; in GetTabById()
495 TabStripModel* target_tab_strip = new_window->tabstrip_model(); in RunImpl() local
496 target_tab_strip->InsertTabContentsAt(urls.size(), contents, in RunImpl()
999 TabStripModel* target_tab_strip = target_browser->tabstrip_model(); in RunImpl() local
1009 if (new_index > target_tab_strip->count()) in RunImpl()
1010 new_index = target_tab_strip->count(); in RunImpl()
1012 target_tab_strip->InsertTabContentsAt(new_index, contents, in RunImpl()
[all …]
/external/chromium_org/chrome/browser/extensions/api/tabs/
Dtabs_api.cc596 TabStripModel* target_tab_strip = new_window->tab_strip_model(); in RunImpl() local
597 target_tab_strip->InsertWebContentsAt(urls.size(), contents, in RunImpl()
1512 TabStripModel* target_tab_strip = target_browser->tab_strip_model(); in MoveTab() local
1524 if (*new_index > target_tab_strip->count() || *new_index < 0) in MoveTab()
1525 *new_index = target_tab_strip->count(); in MoveTab()
1527 target_tab_strip->InsertWebContentsAt( in MoveTab()
1533 target_tab_strip, in MoveTab()