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/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
12 #include "base/message_loop/message_loop_proxy.h" | 12 #include "base/message_loop/message_loop_proxy.h" |
13 #include "chrome/browser/ui/browser_tabstrip.h" | 13 #include "chrome/browser/ui/browser_tabstrip.h" |
14 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 14 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
15 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 15 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
16 #include "chrome/browser/ui/views/frame/browser_view.h" | 16 #include "chrome/browser/ui/views/frame/browser_view.h" |
17 #include "chrome/browser/ui/views/tabs/tab.h" | 17 #include "chrome/browser/ui/views/tabs/tab.h" |
18 #include "chrome/browser/ui/views/tabs/tab_strip.h" | 18 #include "chrome/browser/ui/views/tabs/tab_strip.h" |
19 #include "chrome/common/chrome_switches.h" | 19 #include "chrome/common/chrome_switches.h" |
20 #include "chrome/test/base/in_process_browser_test.h" | 20 #include "chrome/test/base/in_process_browser_test.h" |
21 #include "chrome/test/base/ui_test_utils.h" | 21 #include "chrome/test/base/ui_test_utils.h" |
22 #include "content/public/browser/browser_thread.h" | |
23 #include "content/public/browser/notification_service.h" | 22 #include "content/public/browser/notification_service.h" |
24 #include "content/public/common/url_constants.h" | 23 #include "content/public/common/url_constants.h" |
25 #include "content/public/test/test_utils.h" | 24 #include "content/public/test/test_utils.h" |
26 #include "ui/aura/test/event_generator.h" | 25 #include "ui/aura/test/event_generator.h" |
27 #include "ui/aura/window.h" | 26 #include "ui/aura/window.h" |
28 #include "ui/events/event_utils.h" | 27 #include "ui/events/event_utils.h" |
29 | 28 |
30 #if defined(OS_CHROMEOS) | 29 #if defined(OS_CHROMEOS) |
31 #include "chromeos/chromeos_switches.h" | 30 #include "chromeos/chromeos_switches.h" |
32 #endif | 31 #endif |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 // Close the browser while an activation is pending. | 413 // Close the browser while an activation is pending. |
415 IN_PROC_BROWSER_TEST_F(TabScrubberTest, CloseBrowser) { | 414 IN_PROC_BROWSER_TEST_F(TabScrubberTest, CloseBrowser) { |
416 AddTabs(browser(), 1); | 415 AddTabs(browser(), 1); |
417 | 416 |
418 SendScrubEvent(browser(), 0); | 417 SendScrubEvent(browser(), 0); |
419 EXPECT_TRUE(TabScrubber::GetInstance()->IsActivationPending()); | 418 EXPECT_TRUE(TabScrubber::GetInstance()->IsActivationPending()); |
420 browser()->window()->Close(); | 419 browser()->window()->Close(); |
421 EXPECT_FALSE(TabScrubber::GetInstance()->IsActivationPending()); | 420 EXPECT_FALSE(TabScrubber::GetInstance()->IsActivationPending()); |
422 } | 421 } |
423 | 422 |
424 #endif // OS_CHROMEOS | 423 #endif // defined(OS_CHROMEOS) |
OLD | NEW |