| 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 "ui/views/widget/root_view.h" | 5 #include "ui/views/widget/root_view.h" |
| 6 | 6 |
| 7 #include "base/macros.h" |
| 7 #include "ui/events/event_utils.h" | 8 #include "ui/events/event_utils.h" |
| 8 #include "ui/views/context_menu_controller.h" | 9 #include "ui/views/context_menu_controller.h" |
| 9 #include "ui/views/test/views_test_base.h" | 10 #include "ui/views/test/views_test_base.h" |
| 10 #include "ui/views/view_targeter.h" | 11 #include "ui/views/view_targeter.h" |
| 11 #include "ui/views/widget/root_view.h" | 12 #include "ui/views/widget/root_view.h" |
| 12 #include "ui/views/widget/widget_deletion_observer.h" | 13 #include "ui/views/widget/widget_deletion_observer.h" |
| 13 | 14 |
| 14 namespace views { | 15 namespace views { |
| 15 namespace test { | 16 namespace test { |
| 16 | 17 |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 // mouse exit event to |subchild| and destroy the widget. This should not | 550 // mouse exit event to |subchild| and destroy the widget. This should not |
| 550 // crash when the mouse exit handler returns from |subchild|. | 551 // crash when the mouse exit handler returns from |subchild|. |
| 551 ui::MouseEvent move_event2(ui::ET_MOUSE_MOVED, gfx::Point(15, 15), | 552 ui::MouseEvent move_event2(ui::ET_MOUSE_MOVED, gfx::Point(15, 15), |
| 552 gfx::Point(15, 15), ui::EventTimeForNow(), 0, 0); | 553 gfx::Point(15, 15), ui::EventTimeForNow(), 0, 0); |
| 553 root_view->OnMouseMoved(move_event2); | 554 root_view->OnMouseMoved(move_event2); |
| 554 EXPECT_FALSE(widget_deletion_observer.IsWidgetAlive()); | 555 EXPECT_FALSE(widget_deletion_observer.IsWidgetAlive()); |
| 555 } | 556 } |
| 556 | 557 |
| 557 } // namespace test | 558 } // namespace test |
| 558 } // namespace views | 559 } // namespace views |
| OLD | NEW |