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

Unified Diff: Source/core/animation/InterpolableValue.h

Issue 1082293003: Componentization: make core/animation,clipboard,css,dom,editing,frame,html visible for blink_web. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: WIP Created 5 years, 8 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: Source/core/animation/InterpolableValue.h
diff --git a/Source/core/animation/InterpolableValue.h b/Source/core/animation/InterpolableValue.h
index 61cc73ad7ac50b76207c6270e022a82eab24b026..4e56b58168cae993ea8bad7789ad3c0164c9eb02 100644
--- a/Source/core/animation/InterpolableValue.h
+++ b/Source/core/animation/InterpolableValue.h
@@ -5,6 +5,7 @@
#ifndef InterpolableValue_h
#define InterpolableValue_h
+#include "core/CoreExport.h"
#include "core/animation/animatable/AnimatableValue.h"
#include "platform/heap/Handle.h"
#include "wtf/OwnPtr.h"
@@ -13,7 +14,7 @@
namespace blink {
-class InterpolableValue : public NoBaseWillBeGarbageCollected<InterpolableValue> {
+class CORE_EXPORT InterpolableValue : public NoBaseWillBeGarbageCollected<InterpolableValue> {
DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(InterpolableValue);
public:
virtual bool isNumber() const { return false; }
@@ -42,7 +43,7 @@ private:
friend class AnimationInterpolableValueTest;
};
-class InterpolableNumber final : public InterpolableValue {
+class CORE_EXPORT InterpolableNumber final : public InterpolableValue {
public:
static PassOwnPtrWillBeRawPtr<InterpolableNumber> create(double value)
{
@@ -66,7 +67,7 @@ private:
};
-class InterpolableBool final : public InterpolableValue {
+class CORE_EXPORT InterpolableBool final : public InterpolableValue {
public:
static PassOwnPtrWillBeRawPtr<InterpolableBool> create(bool value)
{
@@ -90,7 +91,7 @@ private:
};
-class InterpolableList : public InterpolableValue {
+class CORE_EXPORT InterpolableList : public InterpolableValue {
tasak 2015/04/15 06:08:15 Need to delete operator=, because of error C2248:
public:
static PassOwnPtrWillBeRawPtr<InterpolableList> create(const InterpolableList &other)
{

Powered by Google App Engine
This is Rietveld 408576698