summaryrefslogtreecommitdiffstats
path: root/cc/layer_animation_controller.h
diff options
context:
space:
mode:
authorenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
committerenne@chromium.org <enne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-19 21:22:42 +0000
commitc753e25a8b4366c44134a8c21b9ed3392bf48608 (patch)
treef378c8a762caccf60856a1670ae33dfd638b9453 /cc/layer_animation_controller.h
parent503160f80568f024fa712e280bb1a4e1e6ca1ec3 (diff)
downloadchromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.zip
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.gz
chromium_src-c753e25a8b4366c44134a8c21b9ed3392bf48608.tar.bz2
Revert "cc: Rename cc classes and members to match filenames"
This reverts commit 184fac5add06d5f4670fa6be4a4d3b39232d51bb. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/layer_animation_controller.h')
-rw-r--r--cc/layer_animation_controller.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/cc/layer_animation_controller.h b/cc/layer_animation_controller.h
index ff6a359..2fdb91c 100644
--- a/cc/layer_animation_controller.h
+++ b/cc/layer_animation_controller.h
@@ -22,9 +22,9 @@ class Animation;
class IntSize;
class KeyframeValueList;
-class LayerAnimationControllerClient {
+class CCLayerAnimationControllerClient {
public:
- virtual ~LayerAnimationControllerClient() { }
+ virtual ~CCLayerAnimationControllerClient() { }
virtual int id() const = 0;
virtual void setOpacityFromAnimation(float) = 0;
@@ -33,67 +33,67 @@ public:
virtual const WebKit::WebTransformationMatrix& transform() const = 0;
};
-class LayerAnimationController {
+class CCLayerAnimationController {
public:
- static scoped_ptr<LayerAnimationController> create(LayerAnimationControllerClient*);
+ static scoped_ptr<CCLayerAnimationController> create(CCLayerAnimationControllerClient*);
- virtual ~LayerAnimationController();
+ virtual ~CCLayerAnimationController();
// These methods are virtual for testing.
- virtual void addAnimation(scoped_ptr<ActiveAnimation>);
+ virtual void addAnimation(scoped_ptr<CCActiveAnimation>);
virtual void pauseAnimation(int animationId, double timeOffset);
virtual void removeAnimation(int animationId);
- virtual void removeAnimation(int animationId, ActiveAnimation::TargetProperty);
+ virtual void removeAnimation(int animationId, CCActiveAnimation::TargetProperty);
virtual void suspendAnimations(double monotonicTime);
virtual void resumeAnimations(double monotonicTime);
// Ensures that the list of active animations on the main thread and the impl thread
// are kept in sync. This function does not take ownership of the impl thread controller.
- virtual void pushAnimationUpdatesTo(LayerAnimationController*);
+ virtual void pushAnimationUpdatesTo(CCLayerAnimationController*);
- void animate(double monotonicTime, AnimationEventsVector*);
+ void animate(double monotonicTime, CCAnimationEventsVector*);
// Returns the active animation in the given group, animating the given property, if such an
// animation exists.
- ActiveAnimation* getActiveAnimation(int groupId, ActiveAnimation::TargetProperty) const;
+ CCActiveAnimation* getActiveAnimation(int groupId, CCActiveAnimation::TargetProperty) const;
// Returns the active animation animating the given property that is either running, or is
// next to run, if such an animation exists.
- ActiveAnimation* getActiveAnimation(ActiveAnimation::TargetProperty) const;
+ CCActiveAnimation* getActiveAnimation(CCActiveAnimation::TargetProperty) const;
// Returns true if there are any animations that have neither finished nor aborted.
bool hasActiveAnimation() const;
// Returns true if there is an animation currently animating the given property, or
// if there is an animation scheduled to animate this property in the future.
- bool isAnimatingProperty(ActiveAnimation::TargetProperty) const;
+ bool isAnimatingProperty(CCActiveAnimation::TargetProperty) const;
// This is called in response to an animation being started on the impl thread. This
// function updates the corresponding main thread animation's start time.
- void notifyAnimationStarted(const AnimationEvent&);
+ void notifyAnimationStarted(const CCAnimationEvent&);
// If a sync is forced, then the next time animation updates are pushed to the impl
// thread, all animations will be transferred.
void setForceSync() { m_forceSync = true; }
- void setClient(LayerAnimationControllerClient*);
+ void setClient(CCLayerAnimationControllerClient*);
protected:
- explicit LayerAnimationController(LayerAnimationControllerClient*);
+ explicit CCLayerAnimationController(CCLayerAnimationControllerClient*);
private:
typedef base::hash_set<int> TargetProperties;
- void pushNewAnimationsToImplThread(LayerAnimationController*) const;
- void removeAnimationsCompletedOnMainThread(LayerAnimationController*) const;
- void pushPropertiesToImplThread(LayerAnimationController*) const;
- void replaceImplThreadAnimations(LayerAnimationController*) const;
+ void pushNewAnimationsToImplThread(CCLayerAnimationController*) const;
+ void removeAnimationsCompletedOnMainThread(CCLayerAnimationController*) const;
+ void pushPropertiesToImplThread(CCLayerAnimationController*) const;
+ void replaceImplThreadAnimations(CCLayerAnimationController*) const;
- void startAnimationsWaitingForNextTick(double monotonicTime, AnimationEventsVector*);
- void startAnimationsWaitingForStartTime(double monotonicTime, AnimationEventsVector*);
- void startAnimationsWaitingForTargetAvailability(double monotonicTime, AnimationEventsVector*);
+ void startAnimationsWaitingForNextTick(double monotonicTime, CCAnimationEventsVector*);
+ void startAnimationsWaitingForStartTime(double monotonicTime, CCAnimationEventsVector*);
+ void startAnimationsWaitingForTargetAvailability(double monotonicTime, CCAnimationEventsVector*);
void resolveConflicts(double monotonicTime);
- void markAnimationsForDeletion(double monotonicTime, AnimationEventsVector*);
+ void markAnimationsForDeletion(double monotonicTime, CCAnimationEventsVector*);
void purgeAnimationsMarkedForDeletion();
void tickAnimations(double monotonicTime);
@@ -101,10 +101,10 @@ private:
// If this is true, we force a sync to the impl thread.
bool m_forceSync;
- LayerAnimationControllerClient* m_client;
- ScopedPtrVector<ActiveAnimation> m_activeAnimations;
+ CCLayerAnimationControllerClient* m_client;
+ ScopedPtrVector<CCActiveAnimation> m_activeAnimations;
- DISALLOW_COPY_AND_ASSIGN(LayerAnimationController);
+ DISALLOW_COPY_AND_ASSIGN(CCLayerAnimationController);
};
} // namespace cc