Chromium Code Reviews| Index: Source/platform/animation/TimingFunctionTestHelper.h |
| diff --git a/Source/core/platform/animation/TimingFunctionTestHelper.h b/Source/platform/animation/TimingFunctionTestHelper.h |
| similarity index 81% |
| rename from Source/core/platform/animation/TimingFunctionTestHelper.h |
| rename to Source/platform/animation/TimingFunctionTestHelper.h |
| index 06eaf0604f6f6ac8f3511ee64633df7e48f60124..5175d10423fe0e1b46c9936d9af5be4bd1cb2a98 100644 |
| --- a/Source/core/platform/animation/TimingFunctionTestHelper.h |
| +++ b/Source/platform/animation/TimingFunctionTestHelper.h |
| @@ -36,7 +36,7 @@ |
| #ifndef TimingFunctionTestHelper_h |
| #define TimingFunctionTestHelper_h |
| -#include "core/platform/animation/TimingFunction.h" |
| +#include "platform/animation/TimingFunction.h" |
| #include <ostream> // NOLINT |
| @@ -45,18 +45,18 @@ namespace WebCore { |
| // PrintTo functions |
| void PrintTo(const LinearTimingFunction&, ::std::ostream*); |
|
Stephen Chennney
2014/01/02 19:02:44
My guess is that you need PLATFORM_EXPORT for all
|
| void PrintTo(const CubicBezierTimingFunction&, ::std::ostream*); |
| -void PrintTo(const StepsTimingFunction&, ::std::ostream*); |
| -void PrintTo(const ChainedTimingFunction&, ::std::ostream*); |
| -void PrintTo(const TimingFunction&, ::std::ostream*); |
| +PLATFORM_EXPORT void PrintTo(const StepsTimingFunction&, ::std::ostream*); |
| +PLATFORM_EXPORT void PrintTo(const ChainedTimingFunction&, ::std::ostream*); |
| +PLATFORM_EXPORT void PrintTo(const TimingFunction&, ::std::ostream*); |
| // operator== functions |
| bool operator==(const LinearTimingFunction&, const TimingFunction&); |
| bool operator==(const CubicBezierTimingFunction&, const TimingFunction&); |
| bool operator==(const StepsTimingFunction&, const TimingFunction&); |
| -bool operator==(const ChainedTimingFunction&, const TimingFunction&); |
| +PLATFORM_EXPORT bool operator==(const ChainedTimingFunction&, const TimingFunction&); |
| -bool operator==(const TimingFunction&, const TimingFunction&); |
| -bool operator!=(const TimingFunction&, const TimingFunction&); |
| +PLATFORM_EXPORT bool operator==(const TimingFunction&, const TimingFunction&); |
| +PLATFORM_EXPORT bool operator!=(const TimingFunction&, const TimingFunction&); |
| } // namespace WebCore |