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

Unified Diff: ui/gfx/compositor/layer.h

Issue 8247009: Explicit animation support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix VS2010 Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/compositor/compositor.gyp ('k') | ui/gfx/compositor/layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/compositor/layer.h
diff --git a/ui/gfx/compositor/layer.h b/ui/gfx/compositor/layer.h
index 06b3d02b1f45fa591c8d09573f82824c037b33dd..08a0e14d0165be079eb8d3e4776123c91364c1f4 100644
--- a/ui/gfx/compositor/layer.h
+++ b/ui/gfx/compositor/layer.h
@@ -15,7 +15,7 @@
#include "ui/gfx/rect.h"
#include "ui/gfx/transform.h"
#include "ui/gfx/compositor/compositor.h"
-#include "ui/gfx/compositor/layer_animator.h"
+#include "ui/gfx/compositor/layer_animation_manager.h"
#include "ui/gfx/compositor/layer_animator_delegate.h"
#include "ui/gfx/compositor/layer_delegate.h"
@@ -227,7 +227,8 @@ class COMPOSITOR_EXPORT Layer : public LayerAnimatorDelegate {
// If the animation is running and has progressed, it is stopped and all
// properties that are animated (except |property|) are immediately set to
// their target value.
- void StopAnimatingIfNecessary(LayerAnimator::AnimationProperty property);
+ void StopAnimatingIfNecessary(
+ LayerAnimationManager::AnimationProperty property);
// Following are invoked from the animation or if no animation exists to
// update the values immediately.
@@ -270,7 +271,7 @@ class COMPOSITOR_EXPORT Layer : public LayerAnimatorDelegate {
LayerDelegate* delegate_;
- scoped_ptr<LayerAnimator> animator_;
+ scoped_ptr<LayerAnimationManager> animator_;
DISALLOW_COPY_AND_ASSIGN(Layer);
};
« no previous file with comments | « ui/gfx/compositor/compositor.gyp ('k') | ui/gfx/compositor/layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698