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/mus/bridge/wm_window_mus.h" | 5 #include "ash/mus/bridge/wm_window_mus.h" |
6 | 6 |
7 #include "ash/common/wm/container_finder.h" | 7 #include "ash/common/wm/container_finder.h" |
8 #include "ash/common/wm/window_state.h" | 8 #include "ash/common/wm/window_state.h" |
9 #include "ash/common/wm_layout_manager.h" | 9 #include "ash/common/wm_layout_manager.h" |
10 #include "ash/common/wm_transient_window_observer.h" | 10 #include "ash/common/wm_transient_window_observer.h" |
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 | 719 |
720 void WmWindowMus::ShowResizeShadow(int component) { | 720 void WmWindowMus::ShowResizeShadow(int component) { |
721 NOTIMPLEMENTED(); | 721 NOTIMPLEMENTED(); |
722 } | 722 } |
723 | 723 |
724 void WmWindowMus::HideResizeShadow() { | 724 void WmWindowMus::HideResizeShadow() { |
725 NOTIMPLEMENTED(); | 725 NOTIMPLEMENTED(); |
726 } | 726 } |
727 | 727 |
728 void WmWindowMus::InstallResizeHandleWindowTargeter( | 728 void WmWindowMus::InstallResizeHandleWindowTargeter( |
729 WmImmersiveFullscreenController* immersive_fullscreen_controller) { | 729 ImmersiveFullscreenController* immersive_fullscreen_controller) { |
730 // TODO(sky): I believe once WmImmersiveFullscreenController is ported this | 730 // TODO(sky): I believe once ImmersiveFullscreenController is ported this |
731 // won't be necessary in mash, but I need to verify that: | 731 // won't be necessary in mash, but I need to verify that: |
732 // http://crbug.com/548435. | 732 // http://crbug.com/548435. |
733 } | 733 } |
734 | 734 |
735 void WmWindowMus::SetBoundsInScreenBehaviorForChildren( | 735 void WmWindowMus::SetBoundsInScreenBehaviorForChildren( |
736 WmWindow::BoundsInScreenBehavior behavior) { | 736 WmWindow::BoundsInScreenBehavior behavior) { |
737 // TODO: SetBoundsInScreen isn't fully implemented yet, | 737 // TODO: SetBoundsInScreen isn't fully implemented yet, |
738 // http://crbug.com/615552. | 738 // http://crbug.com/615552. |
739 NOTIMPLEMENTED(); | 739 NOTIMPLEMENTED(); |
740 } | 740 } |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 } | 872 } |
873 | 873 |
874 void WmWindowMus::OnTransientChildRemoved(ui::Window* window, | 874 void WmWindowMus::OnTransientChildRemoved(ui::Window* window, |
875 ui::Window* transient) { | 875 ui::Window* transient) { |
876 FOR_EACH_OBSERVER(WmTransientWindowObserver, transient_observers_, | 876 FOR_EACH_OBSERVER(WmTransientWindowObserver, transient_observers_, |
877 OnTransientChildRemoved(this, Get(transient))); | 877 OnTransientChildRemoved(this, Get(transient))); |
878 } | 878 } |
879 | 879 |
880 } // namespace mus | 880 } // namespace mus |
881 } // namespace ash | 881 } // namespace ash |
OLD | NEW |