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

Unified Diff: cc/animation/timing_function.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/scroll_offset_animations_impl.h ('k') | cc/animation/transform_operations.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/timing_function.h
diff --git a/cc/animation/timing_function.h b/cc/animation/timing_function.h
index bcd8304e2ffb674f252680ba663b8b204c713158..0f475e7624a1a2f82c0c3aed3a4ac8fa1bf090b7 100644
--- a/cc/animation/timing_function.h
+++ b/cc/animation/timing_function.h
@@ -8,13 +8,13 @@
#include <memory>
#include "base/macros.h"
-#include "cc/base/cc_export.h"
+#include "cc/animation/animation_export.h"
#include "ui/gfx/geometry/cubic_bezier.h"
namespace cc {
// See http://www.w3.org/TR/css3-transitions/.
-class CC_EXPORT TimingFunction {
+class CC_ANIMATION_EXPORT TimingFunction {
public:
virtual ~TimingFunction();
@@ -34,7 +34,7 @@ class CC_EXPORT TimingFunction {
DISALLOW_ASSIGN(TimingFunction);
};
-class CC_EXPORT CubicBezierTimingFunction : public TimingFunction {
+class CC_ANIMATION_EXPORT CubicBezierTimingFunction : public TimingFunction {
public:
enum class EaseType { EASE, EASE_IN, EASE_OUT, EASE_IN_OUT, CUSTOM };
@@ -69,7 +69,7 @@ class CC_EXPORT CubicBezierTimingFunction : public TimingFunction {
DISALLOW_ASSIGN(CubicBezierTimingFunction);
};
-class CC_EXPORT StepsTimingFunction : public TimingFunction {
+class CC_ANIMATION_EXPORT StepsTimingFunction : public TimingFunction {
public:
// Web Animations specification, 3.12.4. Timing in discrete steps.
enum class StepPosition { START, MIDDLE, END };
« no previous file with comments | « cc/animation/scroll_offset_animations_impl.h ('k') | cc/animation/transform_operations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698