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

Unified Diff: Source/platform/animation/TimingFunctionTestHelper.h

Issue 112463008: Move core/platform/animation files (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move TimingFunctions unit tests into platform/animation Created 6 years, 12 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/animation/TimingFunction.h ('k') | Source/platform/animation/TimingFunctionTestHelper.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/platform/animation/TimingFunction.h ('k') | Source/platform/animation/TimingFunctionTestHelper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698