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 #ifndef ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ | 5 #ifndef ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ |
6 #define ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ | 6 #define ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "ash/aura/wm_window_aura.h" | 10 #include "ash/aura/wm_window_aura.h" |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 WmRootWindowController* GetRootWindowController() override; | 91 WmRootWindowController* GetRootWindowController() override; |
92 WmShell* GetShell() const override; | 92 WmShell* GetShell() const override; |
93 bool IsBubble() override; | 93 bool IsBubble() override; |
94 bool HasNonClientArea() override; | 94 bool HasNonClientArea() override; |
95 int GetNonClientComponent(const gfx::Point& location) override; | 95 int GetNonClientComponent(const gfx::Point& location) override; |
96 gfx::Size GetMinimumSize() const override; | 96 gfx::Size GetMinimumSize() const override; |
97 gfx::Size GetMaximumSize() const override; | 97 gfx::Size GetMaximumSize() const override; |
98 gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const override; | 98 gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const override; |
99 bool IsSystemModal() const override; | 99 bool IsSystemModal() const override; |
100 bool GetBoolProperty(WmWindowProperty key) override; | 100 bool GetBoolProperty(WmWindowProperty key) override; |
| 101 void SetBoolProperty(WmWindowProperty key, bool value) override; |
101 int GetIntProperty(WmWindowProperty key) override; | 102 int GetIntProperty(WmWindowProperty key) override; |
102 WmWindow* GetToplevelWindow() override; | 103 WmWindow* GetToplevelWindow() override; |
103 WmWindow* GetToplevelWindowForFocus() override; | 104 WmWindow* GetToplevelWindowForFocus() override; |
104 bool MoveToEventRoot(const ui::Event& event) override; | 105 bool MoveToEventRoot(const ui::Event& event) override; |
105 void SetBoundsInScreen(const gfx::Rect& bounds_in_screen, | 106 void SetBoundsInScreen(const gfx::Rect& bounds_in_screen, |
106 const display::Display& dst_display) override; | 107 const display::Display& dst_display) override; |
107 void SetPinned(bool trusted) override; | 108 void SetPinned(bool trusted) override; |
108 views::Widget* GetInternalWidget() override; | 109 views::Widget* GetInternalWidget() override; |
109 void CloseWidget() override; | 110 void CloseWidget() override; |
110 bool CanActivate() const override; | 111 bool CanActivate() const override; |
(...skipping 30 matching lines...) Expand all Loading... |
141 BoundsInScreenBehavior child_bounds_in_screen_behavior_ = | 142 BoundsInScreenBehavior child_bounds_in_screen_behavior_ = |
142 BoundsInScreenBehavior::USE_LOCAL_COORDINATES; | 143 BoundsInScreenBehavior::USE_LOCAL_COORDINATES; |
143 | 144 |
144 DISALLOW_COPY_AND_ASSIGN(WmWindowMus); | 145 DISALLOW_COPY_AND_ASSIGN(WmWindowMus); |
145 }; | 146 }; |
146 | 147 |
147 } // namespace mus | 148 } // namespace mus |
148 } // namespace ash | 149 } // namespace ash |
149 | 150 |
150 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ | 151 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ |
OLD | NEW |