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

Unified Diff: cc/test/animation_test_common.cc

Issue 12774006: cc: Chromify Layer and LayerImpl classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MoreAndroidCompilings 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 | « cc/solid_color_layer_impl_unittest.cc ('k') | cc/test/fake_content_layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/animation_test_common.cc
diff --git a/cc/test/animation_test_common.cc b/cc/test/animation_test_common.cc
index 1cb09c8cd7ff112d5def0ff349a5a08f4e8d67d1..50c3a1bc2886de3c8d86236d5030d155e3c27ce9 100644
--- a/cc/test/animation_test_common.cc
+++ b/cc/test/animation_test_common.cc
@@ -192,7 +192,7 @@ int addOpacityTransitionToLayer(cc::Layer& layer, double duration, float startOp
int addOpacityTransitionToLayer(cc::LayerImpl& layer, double duration, float startOpacity, float endOpacity, bool useTimingFunction)
{
- return addOpacityTransition(*layer.layerAnimationController(), duration, startOpacity, endOpacity, useTimingFunction);
+ return addOpacityTransition(*layer.layer_animation_controller(), duration, startOpacity, endOpacity, useTimingFunction);
}
int addAnimatedTransformToLayer(cc::Layer& layer, double duration, int deltaX, int deltaY)
@@ -202,7 +202,7 @@ int addAnimatedTransformToLayer(cc::Layer& layer, double duration, int deltaX, i
int addAnimatedTransformToLayer(cc::LayerImpl& layer, double duration, int deltaX, int deltaY)
{
- return addAnimatedTransform(*layer.layerAnimationController(), duration, deltaX, deltaY);
+ return addAnimatedTransform(*layer.layer_animation_controller(), duration, deltaX, deltaY);
}
} // namespace cc
« no previous file with comments | « cc/solid_color_layer_impl_unittest.cc ('k') | cc/test/fake_content_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698