Chromium Code Reviews| Index: public/platform/WebTransformKeyframe.h |
| diff --git a/public/platform/WebTransformKeyframe.h b/public/platform/WebTransformKeyframe.h |
| index 40607a43ab052382ee51a73bf60db4c6ebea12e4..ad236d586a0b5b7b549cd8bf7f162533e5272e6e 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 |
| +#if INSIDE_BLINK |
| WebTransformKeyframe(double time, WTF::PassOwnPtr<WebTransformOperations> value); |
|
abarth-chromium
2013/10/26 00:49:21
You're going to need BLINK_PLATFORM_EXPORT on this
|
| #endif |
| ~WebTransformKeyframe(); |
|
abarth-chromium
2013/10/26 00:49:21
Here too.
|
| - 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; |