| 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..5484e4c9163ff252bc7f15a69b9e73e296128cf3 100644
|
| --- a/cc/trees/layer_tree_host_unittest_video.cc
|
| +++ b/cc/trees/layer_tree_host_unittest_video.cc
|
| @@ -25,14 +25,12 @@ class LayerTreeHostVideoTestSetNeedsDisplay
|
| virtual void SetupTree() OVERRIDE {
|
| scoped_refptr<Layer> root = Layer::Create();
|
| root->SetBounds(gfx::Size(10, 10));
|
| - root->SetAnchorPoint(gfx::PointF());
|
| 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->SetIsDrawable(true);
|
| root->AddChild(video);
|
|
|
|
|