| 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/common/shell_window_ids.h" | 10 #include "ash/common/shell_window_ids.h" |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 bool CanResize() const override; | 204 bool CanResize() const override; |
| 205 bool CanActivate() const override; | 205 bool CanActivate() const override; |
| 206 void StackChildAtTop(WmWindow* child) override; | 206 void StackChildAtTop(WmWindow* child) override; |
| 207 void StackChildAtBottom(WmWindow* child) override; | 207 void StackChildAtBottom(WmWindow* child) override; |
| 208 void StackChildAbove(WmWindow* child, WmWindow* target) override; | 208 void StackChildAbove(WmWindow* child, WmWindow* target) override; |
| 209 void StackChildBelow(WmWindow* child, WmWindow* target) override; | 209 void StackChildBelow(WmWindow* child, WmWindow* target) override; |
| 210 std::vector<WmWindow*> GetChildren() override; | 210 std::vector<WmWindow*> GetChildren() override; |
| 211 void ShowResizeShadow(int component) override; | 211 void ShowResizeShadow(int component) override; |
| 212 void HideResizeShadow() override; | 212 void HideResizeShadow() override; |
| 213 void InstallResizeHandleWindowTargeter( | 213 void InstallResizeHandleWindowTargeter( |
| 214 WmImmersiveFullscreenController* immersive_fullscreen_controller) | 214 ImmersiveFullscreenController* immersive_fullscreen_controller) override; |
| 215 override; | |
| 216 void SetBoundsInScreenBehaviorForChildren( | 215 void SetBoundsInScreenBehaviorForChildren( |
| 217 BoundsInScreenBehavior behavior) override; | 216 BoundsInScreenBehavior behavior) override; |
| 218 void SetSnapsChildrenToPhysicalPixelBoundary() override; | 217 void SetSnapsChildrenToPhysicalPixelBoundary() override; |
| 219 void SnapToPixelBoundaryIfNecessary() override; | 218 void SnapToPixelBoundaryIfNecessary() override; |
| 220 void SetChildrenUseExtendedHitRegion() override; | 219 void SetChildrenUseExtendedHitRegion() override; |
| 221 void SetDescendantsStayInSameRootWindow(bool value) override; | 220 void SetDescendantsStayInSameRootWindow(bool value) override; |
| 222 std::unique_ptr<views::View> CreateViewWithRecreatedLayers() override; | 221 std::unique_ptr<views::View> CreateViewWithRecreatedLayers() override; |
| 223 void AddObserver(WmWindowObserver* observer) override; | 222 void AddObserver(WmWindowObserver* observer) override; |
| 224 void RemoveObserver(WmWindowObserver* observer) override; | 223 void RemoveObserver(WmWindowObserver* observer) override; |
| 225 bool HasObserver(const WmWindowObserver* observer) const override; | 224 bool HasObserver(const WmWindowObserver* observer) const override; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 // If true the minimum size is 0x0, default is minimum size comes from widget. | 283 // If true the minimum size is 0x0, default is minimum size comes from widget. |
| 285 bool use_empty_minimum_size_for_testing_ = false; | 284 bool use_empty_minimum_size_for_testing_ = false; |
| 286 | 285 |
| 287 DISALLOW_COPY_AND_ASSIGN(WmWindowMus); | 286 DISALLOW_COPY_AND_ASSIGN(WmWindowMus); |
| 288 }; | 287 }; |
| 289 | 288 |
| 290 } // namespace mus | 289 } // namespace mus |
| 291 } // namespace ash | 290 } // namespace ash |
| 292 | 291 |
| 293 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ | 292 #endif // ASH_MUS_BRIDGE_WM_WINDOW_MUS_H_ |
| OLD | NEW |