Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: ui/compositor/layer_animation_delegate.h

Issue 11896017: Thread ui opacity animations (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Correctly deal with sequences meant to start together Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "base/memory/scoped_ptr.h"
8 #include "third_party/skia/include/core/SkColor.h" 9 #include "third_party/skia/include/core/SkColor.h"
9 #include "ui/compositor/compositor_export.h" 10 #include "ui/compositor/compositor_export.h"
10 #include "ui/gfx/rect.h" 11 #include "ui/gfx/rect.h"
11 #include "ui/gfx/transform.h" 12 #include "ui/gfx/transform.h"
12 13
14 namespace cc {
15 class Animation;
16 }
17
13 namespace ui { 18 namespace ui {
14 19
15 // Layer animations interact with the layers using this interface. 20 // Layer animations interact with the layers using this interface.
16 class COMPOSITOR_EXPORT LayerAnimationDelegate { 21 class COMPOSITOR_EXPORT LayerAnimationDelegate {
17 public: 22 public:
18 virtual void SetBoundsFromAnimation(const gfx::Rect& bounds) = 0; 23 virtual void SetBoundsFromAnimation(const gfx::Rect& bounds) = 0;
19 virtual void SetTransformFromAnimation(const gfx::Transform& transform) = 0; 24 virtual void SetTransformFromAnimation(const gfx::Transform& transform) = 0;
20 virtual void SetOpacityFromAnimation(float opacity) = 0; 25 virtual void SetOpacityFromAnimation(float opacity) = 0;
21 virtual void SetVisibilityFromAnimation(bool visibility) = 0; 26 virtual void SetVisibilityFromAnimation(bool visibility) = 0;
22 virtual void SetBrightnessFromAnimation(float brightness) = 0; 27 virtual void SetBrightnessFromAnimation(float brightness) = 0;
23 virtual void SetGrayscaleFromAnimation(float grayscale) = 0; 28 virtual void SetGrayscaleFromAnimation(float grayscale) = 0;
24 virtual void SetColorFromAnimation(SkColor color) = 0; 29 virtual void SetColorFromAnimation(SkColor color) = 0;
25 virtual void ScheduleDrawForAnimation() = 0; 30 virtual void ScheduleDrawForAnimation() = 0;
26 virtual const gfx::Rect& GetBoundsForAnimation() const = 0; 31 virtual const gfx::Rect& GetBoundsForAnimation() const = 0;
27 virtual const gfx::Transform& GetTransformForAnimation() const = 0; 32 virtual const gfx::Transform& GetTransformForAnimation() const = 0;
28 virtual float GetOpacityForAnimation() const = 0; 33 virtual float GetOpacityForAnimation() const = 0;
29 virtual bool GetVisibilityForAnimation() const = 0; 34 virtual bool GetVisibilityForAnimation() const = 0;
30 virtual float GetBrightnessForAnimation() const = 0; 35 virtual float GetBrightnessForAnimation() const = 0;
31 virtual float GetGrayscaleForAnimation() const = 0; 36 virtual float GetGrayscaleForAnimation() const = 0;
32 virtual SkColor GetColorForAnimation() const = 0; 37 virtual SkColor GetColorForAnimation() const = 0;
38 virtual void AddThreadedAnimation(scoped_ptr<cc::Animation> animation) = 0;
39 virtual void RemoveThreadedAnimation(int animation_id) = 0;
33 40
34 protected: 41 protected:
35 virtual ~LayerAnimationDelegate() {} 42 virtual ~LayerAnimationDelegate() {}
36 }; 43 };
37 44
38 } // namespace ui 45 } // namespace ui
39 46
40 #endif // UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_ 47 #endif // UI_COMPOSITOR_LAYER_ANIMATION_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698