| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/aura/wm_window_aura.h" | 5 #include "ash/wm/aura/wm_window_aura.h" |
| 6 | 6 |
| 7 #include "ash/ash_constants.h" | 7 #include "ash/ash_constants.h" |
| 8 #include "ash/common/wm/window_state.h" |
| 9 #include "ash/common/wm/wm_layout_manager.h" |
| 10 #include "ash/common/wm/wm_window_observer.h" |
| 11 #include "ash/common/wm/wm_window_property.h" |
| 8 #include "ash/screen_util.h" | 12 #include "ash/screen_util.h" |
| 9 #include "ash/shelf/shelf_util.h" | 13 #include "ash/shelf/shelf_util.h" |
| 10 #include "ash/shell.h" | 14 #include "ash/shell.h" |
| 11 #include "ash/wm/aura/aura_layout_manager_adapter.h" | 15 #include "ash/wm/aura/aura_layout_manager_adapter.h" |
| 12 #include "ash/wm/aura/wm_globals_aura.h" | 16 #include "ash/wm/aura/wm_globals_aura.h" |
| 13 #include "ash/wm/aura/wm_root_window_controller_aura.h" | 17 #include "ash/wm/aura/wm_root_window_controller_aura.h" |
| 14 #include "ash/wm/common/window_state.h" | |
| 15 #include "ash/wm/common/wm_layout_manager.h" | |
| 16 #include "ash/wm/common/wm_window_observer.h" | |
| 17 #include "ash/wm/common/wm_window_property.h" | |
| 18 #include "ash/wm/resize_shadow_controller.h" | 18 #include "ash/wm/resize_shadow_controller.h" |
| 19 #include "ash/wm/window_animations.h" | 19 #include "ash/wm/window_animations.h" |
| 20 #include "ash/wm/window_properties.h" | 20 #include "ash/wm/window_properties.h" |
| 21 #include "ash/wm/window_state_aura.h" | 21 #include "ash/wm/window_state_aura.h" |
| 22 #include "ash/wm/window_util.h" | 22 #include "ash/wm/window_util.h" |
| 23 #include "base/memory/ptr_util.h" | 23 #include "base/memory/ptr_util.h" |
| 24 #include "ui/aura/client/aura_constants.h" | 24 #include "ui/aura/client/aura_constants.h" |
| 25 #include "ui/aura/client/window_tree_client.h" | 25 #include "ui/aura/client/window_tree_client.h" |
| 26 #include "ui/aura/layout_manager.h" | 26 #include "ui/aura/layout_manager.h" |
| 27 #include "ui/aura/window.h" | 27 #include "ui/aura/window.h" |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 FOR_EACH_OBSERVER(WmWindowObserver, observers_, | 660 FOR_EACH_OBSERVER(WmWindowObserver, observers_, |
| 661 OnWindowVisibilityChanging(this, visible)); | 661 OnWindowVisibilityChanging(this, visible)); |
| 662 } | 662 } |
| 663 | 663 |
| 664 void WmWindowAura::OnWindowTitleChanged(aura::Window* window) { | 664 void WmWindowAura::OnWindowTitleChanged(aura::Window* window) { |
| 665 FOR_EACH_OBSERVER(WmWindowObserver, observers_, OnWindowTitleChanged(this)); | 665 FOR_EACH_OBSERVER(WmWindowObserver, observers_, OnWindowTitleChanged(this)); |
| 666 } | 666 } |
| 667 | 667 |
| 668 } // namespace wm | 668 } // namespace wm |
| 669 } // namespace ash | 669 } // namespace ash |
| OLD | NEW |