| Index: ash/common/wm_window.h
|
| diff --git a/ash/common/wm_window.h b/ash/common/wm_window.h
|
| index 3abddc2ad7816aa7ddefdaec9bb5ac482613d8aa..4764762eb955aa92e4b7c08d743955603a7777cb 100644
|
| --- a/ash/common/wm_window.h
|
| +++ b/ash/common/wm_window.h
|
| @@ -11,6 +11,7 @@
|
| #include "ash/ash_export.h"
|
| #include "base/strings/string16.h"
|
| #include "base/time/time.h"
|
| +#include "third_party/skia/include/core/SkColor.h"
|
| #include "ui/base/ui_base_types.h"
|
| #include "ui/compositor/layer_animation_element.h"
|
| #include "ui/wm/core/window_animations.h"
|
| @@ -119,12 +120,16 @@ class ASH_EXPORT WmWindow {
|
| virtual void SetOpacity(float opacity) = 0;
|
| virtual float GetTargetOpacity() const = 0;
|
|
|
| + virtual gfx::Rect GetMinimizeAnimationTargetBoundsInScreen() const = 0;
|
| +
|
| virtual void SetTransform(const gfx::Transform& transform) = 0;
|
| virtual gfx::Transform GetTargetTransform() const = 0;
|
|
|
| virtual bool IsSystemModal() const = 0;
|
|
|
| virtual bool GetBoolProperty(WmWindowProperty key) = 0;
|
| + virtual SkColor GetColorProperty(WmWindowProperty key) = 0;
|
| + virtual void SetColorProperty(WmWindowProperty key, SkColor value) = 0;
|
| virtual int GetIntProperty(WmWindowProperty key) = 0;
|
| virtual void SetIntProperty(WmWindowProperty key, int value) = 0;
|
|
|
|
|