Chromium Code Reviews| Index: Source/core/platform/animation/TimingFunctionTestHelper.h |
| diff --git a/Source/core/platform/animation/TimingFunctionTestHelper.h b/Source/core/platform/animation/TimingFunctionTestHelper.h |
| index cf96685b566358f1fb4fc503340946be427f58d8..06eaf0604f6f6ac8f3511ee64633df7e48f60124 100644 |
| --- a/Source/core/platform/animation/TimingFunctionTestHelper.h |
| +++ b/Source/core/platform/animation/TimingFunctionTestHelper.h |
| @@ -42,12 +42,22 @@ |
| namespace WebCore { |
| +// PrintTo functions |
|
Steve Block
2013/11/06 05:47:19
These comments don't add much!
|
| void PrintTo(const LinearTimingFunction&, ::std::ostream*); |
| void PrintTo(const CubicBezierTimingFunction&, ::std::ostream*); |
| void PrintTo(const StepsTimingFunction&, ::std::ostream*); |
| void PrintTo(const ChainedTimingFunction&, ::std::ostream*); |
| 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&); |
| + |
| +bool operator==(const TimingFunction&, const TimingFunction&); |
| +bool operator!=(const TimingFunction&, const TimingFunction&); |
| + |
| } // namespace WebCore |
| #endif |