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

Unified Diff: cc/keyframed_animation_curve.h

Issue 11745018: Not for review: Move the implementation of WebTransformOperations into chromium (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: New approach 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 side-by-side diff with in-line comments
Download patch
Index: cc/keyframed_animation_curve.h
diff --git a/cc/keyframed_animation_curve.h b/cc/keyframed_animation_curve.h
index 5685eb87bdc8bfb912831ea6728e9d78395262f8..cfd19157ccadddf6c7c4aac9969c794d1c7a8570 100644
--- a/cc/keyframed_animation_curve.h
+++ b/cc/keyframed_animation_curve.h
@@ -9,7 +9,7 @@
#include "cc/cc_export.h"
#include "cc/scoped_ptr_vector.h"
#include "cc/timing_function.h"
-#include "third_party/WebKit/Source/Platform/chromium/public/WebTransformOperations.h"
+#include "cc/transform_operations.h"
namespace cc {
@@ -46,17 +46,17 @@ private:
class CC_EXPORT TransformKeyframe : public Keyframe {
public:
- static scoped_ptr<TransformKeyframe> create(double time, const WebKit::WebTransformOperations& value, scoped_ptr<TimingFunction>);
+ static scoped_ptr<TransformKeyframe> create(double time, const TransformOperations& value, scoped_ptr<TimingFunction>);
virtual ~TransformKeyframe();
- const WebKit::WebTransformOperations& value() const;
+ const TransformOperations& value() const;
scoped_ptr<TransformKeyframe> clone() const;
private:
- TransformKeyframe(double time, const WebKit::WebTransformOperations& value, scoped_ptr<TimingFunction>);
+ TransformKeyframe(double time, const TransformOperations& value, scoped_ptr<TimingFunction>);
- WebKit::WebTransformOperations m_value;
+ TransformOperations m_value;
};
class CC_EXPORT KeyframedFloatAnimationCurve : public FloatAnimationCurve {
« no previous file with comments | « cc/cc_tests.gyp ('k') | cc/keyframed_animation_curve.cc » ('j') | cc/transform_operations.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698