OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/views/ash/tab_scrubber.h" | 5 #include "chrome/browser/ui/views/ash/tab_scrubber.h" |
6 | 6 |
7 #include "ash/display/event_transformation_handler.h" | 7 #include "ash/display/event_transformation_handler.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/macros.h" |
10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
11 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
| 13 #include "build/build_config.h" |
12 #include "chrome/browser/ui/browser_tabstrip.h" | 14 #include "chrome/browser/ui/browser_tabstrip.h" |
13 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 15 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
14 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 16 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
15 #include "chrome/browser/ui/views/frame/browser_view.h" | 17 #include "chrome/browser/ui/views/frame/browser_view.h" |
16 #include "chrome/browser/ui/views/tabs/tab.h" | 18 #include "chrome/browser/ui/views/tabs/tab.h" |
17 #include "chrome/browser/ui/views/tabs/tab_strip.h" | 19 #include "chrome/browser/ui/views/tabs/tab_strip.h" |
18 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
19 #include "chrome/test/base/in_process_browser_test.h" | 21 #include "chrome/test/base/in_process_browser_test.h" |
20 #include "content/public/browser/notification_service.h" | 22 #include "content/public/browser/notification_service.h" |
21 #include "content/public/common/url_constants.h" | 23 #include "content/public/common/url_constants.h" |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 | 496 |
495 SendScrubEvent(browser(), 1); | 497 SendScrubEvent(browser(), 1); |
496 EXPECT_TRUE(TabScrubber::GetInstance()->IsActivationPending()); | 498 EXPECT_TRUE(TabScrubber::GetInstance()->IsActivationPending()); |
497 browser()->tab_strip_model()->ToggleSelectionAt(0); | 499 browser()->tab_strip_model()->ToggleSelectionAt(0); |
498 browser()->tab_strip_model()->ToggleSelectionAt(2); | 500 browser()->tab_strip_model()->ToggleSelectionAt(2); |
499 browser()->tab_strip_model()->MoveSelectedTabsTo(2); | 501 browser()->tab_strip_model()->MoveSelectedTabsTo(2); |
500 EXPECT_EQ(0, TabScrubber::GetInstance()->highlighted_tab()); | 502 EXPECT_EQ(0, TabScrubber::GetInstance()->highlighted_tab()); |
501 } | 503 } |
502 | 504 |
503 #endif // defined(OS_CHROMEOS) | 505 #endif // defined(OS_CHROMEOS) |
OLD | NEW |