| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_ | 5 #ifndef UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_ |
| 6 #define UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_ | 6 #define UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
| 9 #include "ui/compositor/compositor_export.h" | 9 #include "ui/compositor/compositor_export.h" |
| 10 #include "ui/gfx/geometry/rect.h" | 10 #include "ui/gfx/geometry/rect.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 virtual gfx::Transform GetTransformForAnimation() const = 0; | 34 virtual gfx::Transform GetTransformForAnimation() const = 0; |
| 35 virtual float GetOpacityForAnimation() const = 0; | 35 virtual float GetOpacityForAnimation() const = 0; |
| 36 virtual bool GetVisibilityForAnimation() const = 0; | 36 virtual bool GetVisibilityForAnimation() const = 0; |
| 37 virtual float GetBrightnessForAnimation() const = 0; | 37 virtual float GetBrightnessForAnimation() const = 0; |
| 38 virtual float GetGrayscaleForAnimation() const = 0; | 38 virtual float GetGrayscaleForAnimation() const = 0; |
| 39 virtual SkColor GetColorForAnimation() const = 0; | 39 virtual SkColor GetColorForAnimation() const = 0; |
| 40 virtual float GetDeviceScaleFactor() const = 0; | 40 virtual float GetDeviceScaleFactor() const = 0; |
| 41 virtual cc::Layer* GetCcLayer() const = 0; | 41 virtual cc::Layer* GetCcLayer() const = 0; |
| 42 virtual LayerAnimatorCollection* GetLayerAnimatorCollection() = 0; | 42 virtual LayerAnimatorCollection* GetLayerAnimatorCollection() = 0; |
| 43 virtual LayerThreadedAnimationDelegate* GetThreadedAnimationDelegate() = 0; | 43 virtual LayerThreadedAnimationDelegate* GetThreadedAnimationDelegate() = 0; |
| 44 virtual int GetFrameNumber() const = 0; |
| 45 virtual float GetRefreshRate() const = 0; |
| 44 | 46 |
| 45 protected: | 47 protected: |
| 46 virtual ~LayerAnimationDelegate() {} | 48 virtual ~LayerAnimationDelegate() {} |
| 47 }; | 49 }; |
| 48 | 50 |
| 49 } // namespace ui | 51 } // namespace ui |
| 50 | 52 |
| 51 #endif // UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_ | 53 #endif // UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_ |
| OLD | NEW |