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 "ash/drag_drop/drag_drop_controller.h" | 5 #include "ash/drag_drop/drag_drop_controller.h" |
6 | 6 |
7 #include "ash/drag_drop/drag_drop_tracker.h" | 7 #include "ash/drag_drop/drag_drop_tracker.h" |
8 #include "ash/drag_drop/drag_image_view.h" | 8 #include "ash/drag_drop/drag_image_view.h" |
9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
10 #include "ash/test/ash_test_base.h" | 10 #include "ash/test/ash_test_base.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/location.h" | 12 #include "base/location.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "ui/aura/client/capture_client.h" | 14 #include "ui/aura/client/capture_client.h" |
15 #include "ui/aura/test/event_generator.h" | 15 #include "ui/aura/test/event_generator.h" |
16 #include "ui/aura/window_event_dispatcher.h" | 16 #include "ui/aura/window_event_dispatcher.h" |
17 #include "ui/aura/window_tree_host.h" | 17 #include "ui/aura/window_tree_host.h" |
18 #include "ui/base/clipboard/clipboard.h" | 18 #include "ui/base/clipboard/clipboard.h" |
19 #include "ui/base/clipboard/scoped_clipboard_writer.h" | 19 #include "ui/base/clipboard/scoped_clipboard_writer.h" |
20 #include "ui/base/dragdrop/drag_drop_types.h" | 20 #include "ui/base/dragdrop/drag_drop_types.h" |
21 #include "ui/base/dragdrop/drag_utils.h" | 21 #include "ui/base/dragdrop/drag_utils.h" |
22 #include "ui/base/dragdrop/os_exchange_data.h" | 22 #include "ui/base/dragdrop/os_exchange_data.h" |
23 #include "ui/base/ui_base_switches.h" | 23 #include "ui/base/ui_base_switches.h" |
24 #include "ui/events/event.h" | 24 #include "ui/events/event.h" |
25 #include "ui/events/event_utils.h" | 25 #include "ui/events/event_utils.h" |
26 #include "ui/events/gestures/gesture_types.h" | 26 #include "ui/events/gestures/gesture_types.h" |
| 27 #include "ui/events/test/events_test_utils.h" |
27 #include "ui/gfx/animation/linear_animation.h" | 28 #include "ui/gfx/animation/linear_animation.h" |
28 #include "ui/gfx/image/image_skia_rep.h" | 29 #include "ui/gfx/image/image_skia_rep.h" |
29 #include "ui/views/view.h" | 30 #include "ui/views/view.h" |
30 #include "ui/views/views_delegate.h" | 31 #include "ui/views/views_delegate.h" |
31 #include "ui/views/widget/native_widget_aura.h" | 32 #include "ui/views/widget/native_widget_aura.h" |
32 #include "ui/views/widget/native_widget_delegate.h" | 33 #include "ui/views/widget/native_widget_delegate.h" |
33 #include "ui/views/widget/widget.h" | 34 #include "ui/views/widget/widget.h" |
34 | 35 |
35 namespace ash { | 36 namespace ash { |
36 namespace test { | 37 namespace test { |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 | 275 |
275 void DispatchGesture(ui::EventType gesture_type, gfx::Point location) { | 276 void DispatchGesture(ui::EventType gesture_type, gfx::Point location) { |
276 ui::GestureEvent gesture_event( | 277 ui::GestureEvent gesture_event( |
277 gesture_type, | 278 gesture_type, |
278 location.x(), | 279 location.x(), |
279 location.y(), | 280 location.y(), |
280 0, | 281 0, |
281 ui::EventTimeForNow(), | 282 ui::EventTimeForNow(), |
282 ui::GestureEventDetails(gesture_type, 0, 0), | 283 ui::GestureEventDetails(gesture_type, 0, 0), |
283 1); | 284 1); |
284 Shell::GetPrimaryRootWindow()->GetHost()->dispatcher()->DispatchGestureEvent( | 285 ui::EventSource* event_source = |
285 &gesture_event); | 286 Shell::GetPrimaryRootWindow()->GetHost()->GetEventSource(); |
| 287 ui::EventSourceTestApi event_source_test(event_source); |
| 288 ui::EventDispatchDetails details = |
| 289 event_source_test.SendEventToProcessor(&gesture_event); |
| 290 CHECK(!details.dispatcher_destroyed); |
286 } | 291 } |
287 | 292 |
288 } // namespace | 293 } // namespace |
289 | 294 |
290 class DragDropControllerTest : public AshTestBase { | 295 class DragDropControllerTest : public AshTestBase { |
291 public: | 296 public: |
292 DragDropControllerTest() : AshTestBase() {} | 297 DragDropControllerTest() : AshTestBase() {} |
293 virtual ~DragDropControllerTest() {} | 298 virtual ~DragDropControllerTest() {} |
294 | 299 |
295 virtual void SetUp() OVERRIDE { | 300 virtual void SetUp() OVERRIDE { |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1075 EXPECT_EQ("405,405", observer.window_location_on_destroying().ToString()); | 1080 EXPECT_EQ("405,405", observer.window_location_on_destroying().ToString()); |
1076 } | 1081 } |
1077 for (aura::Window::Windows::iterator iter = root_windows.begin(); | 1082 for (aura::Window::Windows::iterator iter = root_windows.begin(); |
1078 iter != root_windows.end(); ++iter) { | 1083 iter != root_windows.end(); ++iter) { |
1079 aura::client::SetDragDropClient(*iter, NULL); | 1084 aura::client::SetDragDropClient(*iter, NULL); |
1080 } | 1085 } |
1081 } | 1086 } |
1082 | 1087 |
1083 } // namespace test | 1088 } // namespace test |
1084 } // namespace aura | 1089 } // namespace aura |
OLD | NEW |