OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ash/autoclick/autoclick_controller.h" | 5 #include "ash/autoclick/autoclick_controller.h" |
6 #include "ash/common/wm_shell.h" | |
7 #include "ash/shell.h" | 6 #include "ash/shell.h" |
8 #include "ash/test/ash_test_base.h" | 7 #include "ash/test/ash_test_base.h" |
| 8 #include "ash/wm_shell.h" |
9 #include "ui/aura/test/test_window_delegate.h" | 9 #include "ui/aura/test/test_window_delegate.h" |
10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
11 #include "ui/aura/window_event_dispatcher.h" | 11 #include "ui/aura/window_event_dispatcher.h" |
12 #include "ui/display/manager/display_manager.h" | 12 #include "ui/display/manager/display_manager.h" |
13 #include "ui/events/event.h" | 13 #include "ui/events/event.h" |
14 #include "ui/events/event_constants.h" | 14 #include "ui/events/event_constants.h" |
15 #include "ui/events/event_handler.h" | 15 #include "ui/events/event_handler.h" |
16 #include "ui/events/event_utils.h" | 16 #include "ui/events/event_utils.h" |
17 #include "ui/events/keycodes/keyboard_codes.h" | 17 #include "ui/events/keycodes/keyboard_codes.h" |
18 #include "ui/events/test/event_generator.h" | 18 #include "ui/events/test/event_generator.h" |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 aura::test::EventCountDelegate delegate; | 285 aura::test::EventCountDelegate delegate; |
286 std::unique_ptr<aura::Window> window(CreateTestWindowInShellWithDelegate( | 286 std::unique_ptr<aura::Window> window(CreateTestWindowInShellWithDelegate( |
287 &delegate, 123, gfx::Rect(50, 50, 100, 100))); | 287 &delegate, 123, gfx::Rect(50, 50, 100, 100))); |
288 window->Show(); | 288 window->Show(); |
289 events = WaitForMouseEvents(); | 289 events = WaitForMouseEvents(); |
290 EXPECT_EQ(0u, events.size()); | 290 EXPECT_EQ(0u, events.size()); |
291 EXPECT_EQ("1 1 0", delegate.GetMouseMotionCountsAndReset()); | 291 EXPECT_EQ("1 1 0", delegate.GetMouseMotionCountsAndReset()); |
292 } | 292 } |
293 | 293 |
294 } // namespace ash | 294 } // namespace ash |
OLD | NEW |