| 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/wm/toplevel_window_event_handler.h" | 5 #include "ash/wm/toplevel_window_event_handler.h" |
| 6 | 6 |
| 7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
| 8 #include "ash/wm/aura/wm_window_aura.h" | 8 #include "ash/wm/aura/wm_window_aura.h" |
| 9 #include "ash/wm/common/window_resizer.h" |
| 10 #include "ash/wm/common/window_state.h" |
| 11 #include "ash/wm/common/window_state_observer.h" |
| 9 #include "ash/wm/common/wm_event.h" | 12 #include "ash/wm/common/wm_event.h" |
| 10 #include "ash/wm/common/wm_window_observer.h" | 13 #include "ash/wm/common/wm_window_observer.h" |
| 11 #include "ash/wm/resize_shadow_controller.h" | 14 #include "ash/wm/resize_shadow_controller.h" |
| 12 #include "ash/wm/window_resizer.h" | |
| 13 #include "ash/wm/window_state.h" | |
| 14 #include "ash/wm/window_state_aura.h" | 15 #include "ash/wm/window_state_aura.h" |
| 15 #include "ash/wm/window_state_observer.h" | |
| 16 #include "ash/wm/window_util.h" | 16 #include "ash/wm/window_util.h" |
| 17 #include "base/message_loop/message_loop.h" | 17 #include "base/message_loop/message_loop.h" |
| 18 #include "base/run_loop.h" | 18 #include "base/run_loop.h" |
| 19 #include "ui/aura/client/cursor_client.h" | 19 #include "ui/aura/client/cursor_client.h" |
| 20 #include "ui/aura/env.h" | 20 #include "ui/aura/env.h" |
| 21 #include "ui/aura/window.h" | 21 #include "ui/aura/window.h" |
| 22 #include "ui/aura/window_delegate.h" | 22 #include "ui/aura/window_delegate.h" |
| 23 #include "ui/aura/window_event_dispatcher.h" | 23 #include "ui/aura/window_event_dispatcher.h" |
| 24 #include "ui/aura/window_observer.h" | 24 #include "ui/aura/window_observer.h" |
| 25 #include "ui/aura/window_tree_host.h" | 25 #include "ui/aura/window_tree_host.h" |
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 default: | 634 default: |
| 635 NOTREACHED(); | 635 NOTREACHED(); |
| 636 } | 636 } |
| 637 } | 637 } |
| 638 | 638 |
| 639 void ToplevelWindowEventHandler::ResizerWindowDestroyed() { | 639 void ToplevelWindowEventHandler::ResizerWindowDestroyed() { |
| 640 CompleteDrag(DRAG_RESIZER_WINDOW_DESTROYED); | 640 CompleteDrag(DRAG_RESIZER_WINDOW_DESTROYED); |
| 641 } | 641 } |
| 642 | 642 |
| 643 } // namespace ash | 643 } // namespace ash |
| OLD | NEW |