| 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_AURA_WM_WINDOW_AURA_H_ | 5 #ifndef ASH_AURA_WM_WINDOW_AURA_H_ |
| 6 #define ASH_AURA_WM_WINDOW_AURA_H_ | 6 #define ASH_AURA_WM_WINDOW_AURA_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/wm_window.h" | 9 #include "ash/common/wm_window.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 void Activate() override; | 147 void Activate() override; |
| 148 void Deactivate() override; | 148 void Deactivate() override; |
| 149 void SetFullscreen() override; | 149 void SetFullscreen() override; |
| 150 void Maximize() override; | 150 void Maximize() override; |
| 151 void Minimize() override; | 151 void Minimize() override; |
| 152 void Unminimize() override; | 152 void Unminimize() override; |
| 153 void SetExcludedFromMru(bool excluded_from_mru) override; | 153 void SetExcludedFromMru(bool excluded_from_mru) override; |
| 154 std::vector<WmWindow*> GetChildren() override; | 154 std::vector<WmWindow*> GetChildren() override; |
| 155 void ShowResizeShadow(int component) override; | 155 void ShowResizeShadow(int component) override; |
| 156 void HideResizeShadow() override; | 156 void HideResizeShadow() override; |
| 157 void InstallResizeHandleWindowTargeter( |
| 158 WmImmersiveFullscreenController* immersive_fullscreen_controller) |
| 159 override; |
| 157 void SetBoundsInScreenBehaviorForChildren( | 160 void SetBoundsInScreenBehaviorForChildren( |
| 158 BoundsInScreenBehavior behavior) override; | 161 BoundsInScreenBehavior behavior) override; |
| 159 void SetSnapsChildrenToPhysicalPixelBoundary() override; | 162 void SetSnapsChildrenToPhysicalPixelBoundary() override; |
| 160 void SnapToPixelBoundaryIfNecessary() override; | 163 void SnapToPixelBoundaryIfNecessary() override; |
| 161 void SetChildrenUseExtendedHitRegion() override; | 164 void SetChildrenUseExtendedHitRegion() override; |
| 162 void SetDescendantsStayInSameRootWindow(bool value) override; | 165 void SetDescendantsStayInSameRootWindow(bool value) override; |
| 163 std::unique_ptr<views::View> CreateViewWithRecreatedLayers() override; | 166 std::unique_ptr<views::View> CreateViewWithRecreatedLayers() override; |
| 164 void AddObserver(WmWindowObserver* observer) override; | 167 void AddObserver(WmWindowObserver* observer) override; |
| 165 void RemoveObserver(WmWindowObserver* observer) override; | 168 void RemoveObserver(WmWindowObserver* observer) override; |
| 166 bool HasObserver(const WmWindowObserver* observer) const override; | 169 bool HasObserver(const WmWindowObserver* observer) const override; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 202 |
| 200 bool added_transient_observer_ = false; | 203 bool added_transient_observer_ = false; |
| 201 base::ObserverList<WmTransientWindowObserver> transient_observers_; | 204 base::ObserverList<WmTransientWindowObserver> transient_observers_; |
| 202 | 205 |
| 203 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); | 206 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); |
| 204 }; | 207 }; |
| 205 | 208 |
| 206 } // namespace ash | 209 } // namespace ash |
| 207 | 210 |
| 208 #endif // ASH_AURA_WM_WINDOW_AURA_H_ | 211 #endif // ASH_AURA_WM_WINDOW_AURA_H_ |
| OLD | NEW |