| 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/aura/wm_window_aura.h" | 5 #include "ash/aura/wm_window_aura.h" |
| 6 | 6 |
| 7 #include "ash/ash_constants.h" | |
| 8 #include "ash/aura/aura_layout_manager_adapter.h" | 7 #include "ash/aura/aura_layout_manager_adapter.h" |
| 9 #include "ash/aura/wm_root_window_controller_aura.h" | 8 #include "ash/aura/wm_root_window_controller_aura.h" |
| 10 #include "ash/aura/wm_shell_aura.h" | 9 #include "ash/aura/wm_shell_aura.h" |
| 10 #include "ash/common/ash_constants.h" |
| 11 #include "ash/common/shell_window_ids.h" | 11 #include "ash/common/shell_window_ids.h" |
| 12 #include "ash/common/wm/window_state.h" | 12 #include "ash/common/wm/window_state.h" |
| 13 #include "ash/common/wm_layout_manager.h" | 13 #include "ash/common/wm_layout_manager.h" |
| 14 #include "ash/common/wm_window_observer.h" | 14 #include "ash/common/wm_window_observer.h" |
| 15 #include "ash/common/wm_window_property.h" | 15 #include "ash/common/wm_window_property.h" |
| 16 #include "ash/screen_util.h" | 16 #include "ash/screen_util.h" |
| 17 #include "ash/shelf/shelf_util.h" | 17 #include "ash/shelf/shelf_util.h" |
| 18 #include "ash/shell.h" | 18 #include "ash/shell.h" |
| 19 #include "ash/wm/resize_shadow_controller.h" | 19 #include "ash/wm/resize_shadow_controller.h" |
| 20 #include "ash/wm/window_animations.h" | 20 #include "ash/wm/window_animations.h" |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 bool visible) { | 685 bool visible) { |
| 686 FOR_EACH_OBSERVER(WmWindowObserver, observers_, | 686 FOR_EACH_OBSERVER(WmWindowObserver, observers_, |
| 687 OnWindowVisibilityChanging(this, visible)); | 687 OnWindowVisibilityChanging(this, visible)); |
| 688 } | 688 } |
| 689 | 689 |
| 690 void WmWindowAura::OnWindowTitleChanged(aura::Window* window) { | 690 void WmWindowAura::OnWindowTitleChanged(aura::Window* window) { |
| 691 FOR_EACH_OBSERVER(WmWindowObserver, observers_, OnWindowTitleChanged(this)); | 691 FOR_EACH_OBSERVER(WmWindowObserver, observers_, OnWindowTitleChanged(this)); |
| 692 } | 692 } |
| 693 | 693 |
| 694 } // namespace ash | 694 } // namespace ash |
| OLD | NEW |