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

Unified Diff: cc/animation/animation_curve.h

Issue 2506093003: CC Animation: Make cc/animation an independent GN component. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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 | « cc/animation/animation.h ('k') | cc/animation/animation_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/animation_curve.h
diff --git a/cc/animation/animation_curve.h b/cc/animation/animation_curve.h
index a42fcaffe3e5050830181a01e6e10d62ff700635..4564446af6af638c21b974c06878adbc0bcfeb50 100644
--- a/cc/animation/animation_curve.h
+++ b/cc/animation/animation_curve.h
@@ -8,7 +8,7 @@
#include <memory>
#include "base/time/time.h"
-#include "cc/base/cc_export.h"
+#include "cc/animation/animation_export.h"
#include "cc/output/filter_operations.h"
#include "ui/gfx/transform.h"
@@ -25,7 +25,7 @@ class ScrollOffsetAnimationCurve;
class TransformAnimationCurve;
// An animation curve is a function that returns a value given a time.
-class CC_EXPORT AnimationCurve {
+class CC_ANIMATION_EXPORT AnimationCurve {
public:
enum CurveType { COLOR, FLOAT, TRANSFORM, FILTER, SCROLL_OFFSET };
@@ -44,7 +44,7 @@ class CC_EXPORT AnimationCurve {
ScrollOffsetAnimationCurve* ToScrollOffsetAnimationCurve();
};
-class CC_EXPORT ColorAnimationCurve : public AnimationCurve {
+class CC_ANIMATION_EXPORT ColorAnimationCurve : public AnimationCurve {
public:
~ColorAnimationCurve() override {}
@@ -54,7 +54,7 @@ class CC_EXPORT ColorAnimationCurve : public AnimationCurve {
CurveType Type() const override;
};
-class CC_EXPORT FloatAnimationCurve : public AnimationCurve {
+class CC_ANIMATION_EXPORT FloatAnimationCurve : public AnimationCurve {
public:
~FloatAnimationCurve() override {}
@@ -64,7 +64,7 @@ class CC_EXPORT FloatAnimationCurve : public AnimationCurve {
CurveType Type() const override;
};
-class CC_EXPORT TransformAnimationCurve : public AnimationCurve {
+class CC_ANIMATION_EXPORT TransformAnimationCurve : public AnimationCurve {
public:
~TransformAnimationCurve() override {}
@@ -98,7 +98,7 @@ class CC_EXPORT TransformAnimationCurve : public AnimationCurve {
CurveType Type() const override;
};
-class CC_EXPORT FilterAnimationCurve : public AnimationCurve {
+class CC_ANIMATION_EXPORT FilterAnimationCurve : public AnimationCurve {
public:
~FilterAnimationCurve() override {}
« no previous file with comments | « cc/animation/animation.h ('k') | cc/animation/animation_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698