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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 gfx::Size GetMaximumSize() const override; | 77 gfx::Size GetMaximumSize() const override; |
78 bool GetTargetVisibility() const override; | 78 bool GetTargetVisibility() const override; |
79 bool IsVisible() const override; | 79 bool IsVisible() const override; |
80 void SetOpacity(float opacity) override; | 80 void SetOpacity(float opacity) override; |
81 float GetTargetOpacity() const override; | 81 float GetTargetOpacity() const override; |
82 gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const override; | 82 gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const override; |
83 void SetTransform(const gfx::Transform& transform) override; | 83 void SetTransform(const gfx::Transform& transform) override; |
84 gfx::Transform GetTargetTransform() const override; | 84 gfx::Transform GetTargetTransform() const override; |
85 bool IsSystemModal() const override; | 85 bool IsSystemModal() const override; |
86 bool GetBoolProperty(WmWindowProperty key) override; | 86 bool GetBoolProperty(WmWindowProperty key) override; |
| 87 void SetBoolProperty(WmWindowProperty key, bool value) override; |
87 SkColor GetColorProperty(WmWindowProperty key) override; | 88 SkColor GetColorProperty(WmWindowProperty key) override; |
88 void SetColorProperty(WmWindowProperty key, SkColor value) override; | 89 void SetColorProperty(WmWindowProperty key, SkColor value) override; |
89 int GetIntProperty(WmWindowProperty key) override; | 90 int GetIntProperty(WmWindowProperty key) override; |
90 void SetIntProperty(WmWindowProperty key, int value) override; | 91 void SetIntProperty(WmWindowProperty key, int value) override; |
91 std::string GetStringProperty(WmWindowProperty key) override; | 92 std::string GetStringProperty(WmWindowProperty key) override; |
92 void SetStringProperty(WmWindowProperty key, | 93 void SetStringProperty(WmWindowProperty key, |
93 const std::string& value) override; | 94 const std::string& value) override; |
94 gfx::ImageSkia GetWindowIcon() override; | 95 gfx::ImageSkia GetWindowIcon() override; |
95 gfx::ImageSkia GetAppIcon() override; | 96 gfx::ImageSkia GetAppIcon() override; |
96 const wm::WindowState* GetWindowState() const override; | 97 const wm::WindowState* GetWindowState() const override; |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 | 226 |
226 bool added_transient_observer_ = false; | 227 bool added_transient_observer_ = false; |
227 base::ObserverList<WmTransientWindowObserver> transient_observers_; | 228 base::ObserverList<WmTransientWindowObserver> transient_observers_; |
228 | 229 |
229 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); | 230 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); |
230 }; | 231 }; |
231 | 232 |
232 } // namespace ash | 233 } // namespace ash |
233 | 234 |
234 #endif // ASH_AURA_WM_WINDOW_AURA_H_ | 235 #endif // ASH_AURA_WM_WINDOW_AURA_H_ |
OLD | NEW |