Index: cc/trees/layer_tree_host_unittest_video.cc |
diff --git a/cc/trees/layer_tree_host_unittest_video.cc b/cc/trees/layer_tree_host_unittest_video.cc |
index 1941018a812836aad2238de57cb21b7352818596..36385cfd8d45cc52ea37e0e8e8df2ab0419329a4 100644 |
--- a/cc/trees/layer_tree_host_unittest_video.cc |
+++ b/cc/trees/layer_tree_host_unittest_video.cc |
@@ -25,14 +25,14 @@ class LayerTreeHostVideoTestSetNeedsDisplay |
virtual void SetupTree() OVERRIDE { |
scoped_refptr<Layer> root = Layer::Create(); |
root->SetBounds(gfx::Size(10, 10)); |
- root->SetAnchorPoint(gfx::PointF()); |
+ root->SetTransformOrigin(gfx::Point3F()); |
root->SetIsDrawable(true); |
scoped_refptr<VideoLayer> video = VideoLayer::Create( |
&video_frame_provider_); |
video->SetPosition(gfx::PointF(3.f, 3.f)); |
video->SetBounds(gfx::Size(4, 4)); |
- video->SetAnchorPoint(gfx::PointF()); |
+ video->SetTransformOrigin(gfx::Point3F()); |
video->SetIsDrawable(true); |
root->AddChild(video); |