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 "mash/wm/bridge/wm_window_mus.h" | 5 #include "mash/wm/bridge/wm_window_mus.h" |
6 | 6 |
7 #include "ash/wm/common/container_finder.h" | 7 #include "ash/common/wm/container_finder.h" |
8 #include "ash/wm/common/window_state.h" | 8 #include "ash/common/wm/window_state.h" |
9 #include "ash/wm/common/wm_layout_manager.h" | 9 #include "ash/common/wm/wm_layout_manager.h" |
10 #include "ash/wm/common/wm_window_observer.h" | 10 #include "ash/common/wm/wm_window_observer.h" |
11 #include "ash/wm/common/wm_window_property.h" | 11 #include "ash/common/wm/wm_window_property.h" |
12 #include "components/mus/public/cpp/property_type_converters.h" | 12 #include "components/mus/public/cpp/property_type_converters.h" |
13 #include "components/mus/public/cpp/window.h" | 13 #include "components/mus/public/cpp/window.h" |
14 #include "components/mus/public/cpp/window_property.h" | 14 #include "components/mus/public/cpp/window_property.h" |
15 #include "components/mus/public/cpp/window_tree_client.h" | 15 #include "components/mus/public/cpp/window_tree_client.h" |
16 #include "components/mus/public/interfaces/window_manager.mojom.h" | 16 #include "components/mus/public/interfaces/window_manager.mojom.h" |
17 #include "mash/wm/bridge/mus_layout_manager_adapter.h" | 17 #include "mash/wm/bridge/mus_layout_manager_adapter.h" |
18 #include "mash/wm/bridge/wm_globals_mus.h" | 18 #include "mash/wm/bridge/wm_globals_mus.h" |
19 #include "mash/wm/bridge/wm_root_window_controller_mus.h" | 19 #include "mash/wm/bridge/wm_root_window_controller_mus.h" |
20 #include "mash/wm/property_util.h" | 20 #include "mash/wm/property_util.h" |
21 #include "ui/aura/mus/mus_util.h" | 21 #include "ui/aura/mus/mus_util.h" |
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 OnWindowBoundsChanged(this, old_bounds, new_bounds)); | 730 OnWindowBoundsChanged(this, old_bounds, new_bounds)); |
731 } | 731 } |
732 | 732 |
733 void WmWindowMus::OnWindowDestroying(mus::Window* window) { | 733 void WmWindowMus::OnWindowDestroying(mus::Window* window) { |
734 FOR_EACH_OBSERVER(ash::wm::WmWindowObserver, observers_, | 734 FOR_EACH_OBSERVER(ash::wm::WmWindowObserver, observers_, |
735 OnWindowDestroying(this)); | 735 OnWindowDestroying(this)); |
736 } | 736 } |
737 | 737 |
738 } // namespace wm | 738 } // namespace wm |
739 } // namespace mash | 739 } // namespace mash |
OLD | NEW |