| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 gfx::Point ConvertPointToScreen(const gfx::Point& point) const override; | 67 gfx::Point ConvertPointToScreen(const gfx::Point& point) const override; |
| 68 gfx::Point ConvertPointFromScreen(const gfx::Point& point) const override; | 68 gfx::Point ConvertPointFromScreen(const gfx::Point& point) const override; |
| 69 gfx::Rect ConvertRectToScreen(const gfx::Rect& rect) const override; | 69 gfx::Rect ConvertRectToScreen(const gfx::Rect& rect) const override; |
| 70 gfx::Rect ConvertRectFromScreen(const gfx::Rect& rect) const override; | 70 gfx::Rect ConvertRectFromScreen(const gfx::Rect& rect) const override; |
| 71 gfx::Size GetMinimumSize() const override; | 71 gfx::Size GetMinimumSize() const override; |
| 72 gfx::Size GetMaximumSize() const override; | 72 gfx::Size GetMaximumSize() const override; |
| 73 bool GetTargetVisibility() const override; | 73 bool GetTargetVisibility() const override; |
| 74 bool IsVisible() const override; | 74 bool IsVisible() const override; |
| 75 void SetOpacity(float opacity) override; | 75 void SetOpacity(float opacity) override; |
| 76 float GetTargetOpacity() const override; | 76 float GetTargetOpacity() const override; |
| 77 gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const override; |
| 77 void SetTransform(const gfx::Transform& transform) override; | 78 void SetTransform(const gfx::Transform& transform) override; |
| 78 gfx::Transform GetTargetTransform() const override; | 79 gfx::Transform GetTargetTransform() const override; |
| 79 bool IsSystemModal() const override; | 80 bool IsSystemModal() const override; |
| 80 bool GetBoolProperty(WmWindowProperty key) override; | 81 bool GetBoolProperty(WmWindowProperty key) override; |
| 82 SkColor GetColorProperty(WmWindowProperty key) override; |
| 83 void SetColorProperty(WmWindowProperty key, SkColor value) override; |
| 81 int GetIntProperty(WmWindowProperty key) override; | 84 int GetIntProperty(WmWindowProperty key) override; |
| 82 void SetIntProperty(WmWindowProperty key, int value) override; | 85 void SetIntProperty(WmWindowProperty key, int value) override; |
| 83 ShelfItemDetails* GetShelfItemDetails() override; | 86 ShelfItemDetails* GetShelfItemDetails() override; |
| 84 void SetShelfItemDetails(const ShelfItemDetails& details) override; | 87 void SetShelfItemDetails(const ShelfItemDetails& details) override; |
| 85 void ClearShelfItemDetails() override; | 88 void ClearShelfItemDetails() override; |
| 86 const wm::WindowState* GetWindowState() const override; | 89 const wm::WindowState* GetWindowState() const override; |
| 87 WmWindow* GetToplevelWindow() override; | 90 WmWindow* GetToplevelWindow() override; |
| 88 WmWindow* GetToplevelWindowForFocus() override; | 91 WmWindow* GetToplevelWindowForFocus() override; |
| 89 void SetParentUsingContext(WmWindow* context, | 92 void SetParentUsingContext(WmWindow* context, |
| 90 const gfx::Rect& screen_bounds) override; | 93 const gfx::Rect& screen_bounds) override; |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 206 |
| 204 bool added_transient_observer_ = false; | 207 bool added_transient_observer_ = false; |
| 205 base::ObserverList<WmTransientWindowObserver> transient_observers_; | 208 base::ObserverList<WmTransientWindowObserver> transient_observers_; |
| 206 | 209 |
| 207 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); | 210 DISALLOW_COPY_AND_ASSIGN(WmWindowAura); |
| 208 }; | 211 }; |
| 209 | 212 |
| 210 } // namespace ash | 213 } // namespace ash |
| 211 | 214 |
| 212 #endif // ASH_AURA_WM_WINDOW_AURA_H_ | 215 #endif // ASH_AURA_WM_WINDOW_AURA_H_ |
| OLD | NEW |