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

Unified Diff: public/platform/WebTransformKeyframe.h

Issue 43593005: Move WebTransformKeyframe to platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase, add missing export macro Created 7 years, 2 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
« no previous file with comments | « Source/platform/exported/WebTransformKeyframe.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebTransformKeyframe.h
diff --git a/public/platform/WebTransformKeyframe.h b/public/platform/WebTransformKeyframe.h
index 40607a43ab052382ee51a73bf60db4c6ebea12e4..746e054b86c4cc08a8c623d52d1f03d250599548 100644
--- a/public/platform/WebTransformKeyframe.h
+++ b/public/platform/WebTransformKeyframe.h
@@ -28,7 +28,7 @@
#include "WebNonCopyable.h"
#include "WebPrivateOwnPtr.h"
#include "WebTransformOperations.h"
-#if BLINK_IMPLEMENTATION
+#if INSIDE_BLINK
namespace WTF { template <typename T> class PassOwnPtr; }
#endif
@@ -36,15 +36,15 @@ namespace WebKit {
class WebTransformKeyframe : public WebNonCopyable {
public:
-#if BLINK_IMPLEMENTATION
- WebTransformKeyframe(double time, WTF::PassOwnPtr<WebTransformOperations> value);
+#if INSIDE_BLINK
+ BLINK_PLATFORM_EXPORT WebTransformKeyframe(double time, WTF::PassOwnPtr<WebTransformOperations> value);
#endif
- ~WebTransformKeyframe();
+ BLINK_PLATFORM_EXPORT ~WebTransformKeyframe();
- BLINK_EXPORT double time() const;
+ BLINK_PLATFORM_EXPORT double time() const;
- BLINK_EXPORT const WebTransformOperations& value() const;
+ BLINK_PLATFORM_EXPORT const WebTransformOperations& value() const;
private:
double m_time;
« no previous file with comments | « Source/platform/exported/WebTransformKeyframe.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698