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

Unified Diff: Source/core/animation/CompositorAnimationsTestHelper.h

Issue 178263006: Handle direction control in compositor Animations (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: new patch: rebases against tot; fixes enum naming issue Created 6 years, 9 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
Index: Source/core/animation/CompositorAnimationsTestHelper.h
diff --git a/Source/core/animation/CompositorAnimationsTestHelper.h b/Source/core/animation/CompositorAnimationsTestHelper.h
index bb2761f75fc4fd16b6a67b7246714516c9cfbd7e..981ea8572b01e01d158e70ec4af3b1d3bf0f9728 100644
--- a/Source/core/animation/CompositorAnimationsTestHelper.h
+++ b/Source/core/animation/CompositorAnimationsTestHelper.h
@@ -85,8 +85,8 @@ public:
MOCK_CONST_METHOD0(timeOffset, double());
MOCK_METHOD1(setTimeOffset, void(double));
- MOCK_CONST_METHOD0(alternatesDirection, bool());
- MOCK_METHOD1(setAlternatesDirection, void(bool));
+ MOCK_CONST_METHOD0(direction, Direction());
+ MOCK_METHOD1(setDirection, void(Direction));
MOCK_METHOD0(delete_, void());
~WebAnimationMock() { delete_(); }

Powered by Google App Engine
This is Rietveld 408576698