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

Unified Diff: cc/timing_function.h

Issue 11365025: Make cc a component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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/time_source.h ('k') | cc/tree_synchronizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/timing_function.h
diff --git a/cc/timing_function.h b/cc/timing_function.h
index 67fe5125b29f95d459a79930d8c67d824dd6140c..967dd13c217aeb76a3443a867d237691f5847ce7 100644
--- a/cc/timing_function.h
+++ b/cc/timing_function.h
@@ -7,11 +7,12 @@
#include "UnitBezier.h"
#include "cc/animation_curve.h"
+#include "cc/cc_export.h"
namespace cc {
// See http://www.w3.org/TR/css3-transitions/.
-class TimingFunction : public FloatAnimationCurve {
+class CC_EXPORT TimingFunction : public FloatAnimationCurve {
public:
virtual ~TimingFunction();
@@ -22,7 +23,7 @@ protected:
TimingFunction();
};
-class CubicBezierTimingFunction : public TimingFunction {
+class CC_EXPORT CubicBezierTimingFunction : public TimingFunction {
public:
static scoped_ptr<CubicBezierTimingFunction> create(double x1, double y1, double x2, double y2);
virtual ~CubicBezierTimingFunction();
@@ -37,22 +38,22 @@ protected:
UnitBezier m_curve;
};
-class EaseTimingFunction {
+class CC_EXPORT EaseTimingFunction {
public:
static scoped_ptr<TimingFunction> create();
};
-class EaseInTimingFunction {
+class CC_EXPORT EaseInTimingFunction {
public:
static scoped_ptr<TimingFunction> create();
};
-class EaseOutTimingFunction {
+class CC_EXPORT EaseOutTimingFunction {
public:
static scoped_ptr<TimingFunction> create();
};
-class EaseInOutTimingFunction {
+class CC_EXPORT EaseInOutTimingFunction {
public:
static scoped_ptr<TimingFunction> create();
};
« no previous file with comments | « cc/time_source.h ('k') | cc/tree_synchronizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698