/external/chromium_org/chrome/browser/ui/views/tabs/ |
tab_strip_controller.h | 85 virtual void OnDropIndexUpdate(int index, bool drop_before) = 0; 88 virtual void PerformDrop(bool drop_before, int index, const GURL& url) = 0;
|
fake_base_tab_strip_controller.h | 43 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; 44 virtual void PerformDrop(bool drop_before,
|
fake_base_tab_strip_controller.cc | 96 bool drop_before) { 99 void FakeBaseTabStripController::PerformDrop(bool drop_before,
|
browser_tab_strip_controller.h | 66 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; 67 virtual void PerformDrop(bool drop_before,
|
tab_strip.h | 276 bool drop_before, 281 // Index of the tab to drop on. If drop_before is true, the drop should 283 // WARNING: if drop_before is true it is possible this will == tab_count, 286 bool drop_before; member in struct:TabStrip::DropInfo 484 gfx::Rect GetDropBounds(int drop_index, bool drop_before, bool* is_beneath); 490 void SetDropIndex(int tab_data_index, bool drop_before);
|
browser_tab_strip_controller.cc | 329 bool drop_before) { 332 if (index != -1 && !drop_before) { 339 void BrowserTabStripController::PerformDrop(bool drop_before, 345 if (drop_before) {
|
tab_strip.cc | 1393 const bool drop_before = drop_info_->drop_before; local [all...] |