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

Unified Diff: cc/animation/layer_animation_controller_unittest.cc

Issue 12854010: cc: Chromify animation_test_common (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch for landing, rebased Created 7 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
« no previous file with comments | « no previous file | cc/layers/layer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/layer_animation_controller_unittest.cc
diff --git a/cc/animation/layer_animation_controller_unittest.cc b/cc/animation/layer_animation_controller_unittest.cc
index d7ecf9f2375dd9ed935acafe1bcaa5668c53d4ec..48ce28b1e6c1366a51668d533f14ac63a8f2cca8 100644
--- a/cc/animation/layer_animation_controller_unittest.cc
+++ b/cc/animation/layer_animation_controller_unittest.cc
@@ -37,7 +37,7 @@ TEST(LayerAnimationControllerTest, SyncNewAnimation) {
EXPECT_FALSE(controller_impl->GetAnimation(0, Animation::Opacity));
- addOpacityTransitionToController(*controller, 1, 0, 1, false);
+ AddOpacityTransitionToController(controller, 1, 0, 1, false);
controller->PushAnimationUpdatesTo(controller_impl.get());
@@ -60,7 +60,7 @@ TEST(LayerAnimationControllerTest, DoNotClobberStartTimes) {
EXPECT_FALSE(controller_impl->GetAnimation(0, Animation::Opacity));
- addOpacityTransitionToController(*controller, 1, 0, 1, false);
+ AddOpacityTransitionToController(controller, 1, 0, 1, false);
controller->PushAnimationUpdatesTo(controller_impl.get());
@@ -97,7 +97,7 @@ TEST(LayerAnimationControllerTest, SyncPauseAndResume) {
EXPECT_FALSE(controller_impl->GetAnimation(0, Animation::Opacity));
- addOpacityTransitionToController(*controller, 1, 0, 1, false);
+ AddOpacityTransitionToController(controller, 1, 0, 1, false);
controller->PushAnimationUpdatesTo(controller_impl.get());
@@ -150,7 +150,7 @@ TEST(LayerAnimationControllerTest, DoNotSyncFinishedAnimation) {
EXPECT_FALSE(controller_impl->GetAnimation(0, Animation::Opacity));
int animation_id =
- addOpacityTransitionToController(*controller, 1, 0, 1, false);
+ AddOpacityTransitionToController(controller, 1, 0, 1, false);
controller->PushAnimationUpdatesTo(controller_impl.get());
« no previous file with comments | « no previous file | cc/layers/layer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698