| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/layers/nine_patch_layer.h" | 5 #include "cc/layers/nine_patch_layer.h" |
| 6 | 6 |
| 7 #include "cc/layers/layer_settings.h" | |
| 8 #include "cc/resources/resource_provider.h" | 7 #include "cc/resources/resource_provider.h" |
| 9 #include "cc/resources/scoped_ui_resource.h" | 8 #include "cc/resources/scoped_ui_resource.h" |
| 10 #include "cc/test/fake_layer_tree_host.h" | 9 #include "cc/test/fake_layer_tree_host.h" |
| 11 #include "cc/test/fake_layer_tree_host_client.h" | 10 #include "cc/test/fake_layer_tree_host_client.h" |
| 12 #include "cc/test/fake_output_surface.h" | 11 #include "cc/test/fake_output_surface.h" |
| 13 #include "cc/test/fake_output_surface_client.h" | 12 #include "cc/test/fake_output_surface_client.h" |
| 14 #include "cc/test/geometry_test_utils.h" | 13 #include "cc/test/geometry_test_utils.h" |
| 15 #include "cc/test/test_task_graph_runner.h" | 14 #include "cc/test/test_task_graph_runner.h" |
| 16 #include "cc/trees/layer_tree_host.h" | 15 #include "cc/trees/layer_tree_host.h" |
| 17 #include "cc/trees/single_thread_proxy.h" | 16 #include "cc/trees/single_thread_proxy.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 40 void TearDown() override { | 39 void TearDown() override { |
| 41 Mock::VerifyAndClearExpectations(layer_tree_host_.get()); | 40 Mock::VerifyAndClearExpectations(layer_tree_host_.get()); |
| 42 } | 41 } |
| 43 | 42 |
| 44 FakeLayerTreeHostClient fake_client_; | 43 FakeLayerTreeHostClient fake_client_; |
| 45 TestTaskGraphRunner task_graph_runner_; | 44 TestTaskGraphRunner task_graph_runner_; |
| 46 scoped_ptr<FakeLayerTreeHost> layer_tree_host_; | 45 scoped_ptr<FakeLayerTreeHost> layer_tree_host_; |
| 47 }; | 46 }; |
| 48 | 47 |
| 49 TEST_F(NinePatchLayerTest, SetLayerProperties) { | 48 TEST_F(NinePatchLayerTest, SetLayerProperties) { |
| 50 scoped_refptr<NinePatchLayer> test_layer = | 49 scoped_refptr<NinePatchLayer> test_layer = NinePatchLayer::Create(); |
| 51 NinePatchLayer::Create(LayerSettings()); | |
| 52 ASSERT_TRUE(test_layer.get()); | 50 ASSERT_TRUE(test_layer.get()); |
| 53 test_layer->SetIsDrawable(true); | 51 test_layer->SetIsDrawable(true); |
| 54 test_layer->SetBounds(gfx::Size(100, 100)); | 52 test_layer->SetBounds(gfx::Size(100, 100)); |
| 55 | 53 |
| 56 layer_tree_host_->SetRootLayer(test_layer); | 54 layer_tree_host_->SetRootLayer(test_layer); |
| 57 Mock::VerifyAndClearExpectations(layer_tree_host_.get()); | 55 Mock::VerifyAndClearExpectations(layer_tree_host_.get()); |
| 58 EXPECT_EQ(test_layer->layer_tree_host(), layer_tree_host_.get()); | 56 EXPECT_EQ(test_layer->layer_tree_host(), layer_tree_host_.get()); |
| 59 | 57 |
| 60 gfx::Rect screen_space_clip_rect; | 58 gfx::Rect screen_space_clip_rect; |
| 61 test_layer->SavePaintProperties(); | 59 test_layer->SavePaintProperties(); |
| 62 test_layer->Update(); | 60 test_layer->Update(); |
| 63 | 61 |
| 64 EXPECT_FALSE(test_layer->DrawsContent()); | 62 EXPECT_FALSE(test_layer->DrawsContent()); |
| 65 | 63 |
| 66 bool is_opaque = false; | 64 bool is_opaque = false; |
| 67 scoped_ptr<ScopedUIResource> resource = ScopedUIResource::Create( | 65 scoped_ptr<ScopedUIResource> resource = ScopedUIResource::Create( |
| 68 layer_tree_host_.get(), UIResourceBitmap(gfx::Size(10, 10), is_opaque)); | 66 layer_tree_host_.get(), UIResourceBitmap(gfx::Size(10, 10), is_opaque)); |
| 69 gfx::Rect aperture(5, 5, 1, 1); | 67 gfx::Rect aperture(5, 5, 1, 1); |
| 70 bool fill_center = true; | 68 bool fill_center = true; |
| 71 test_layer->SetAperture(aperture); | 69 test_layer->SetAperture(aperture); |
| 72 test_layer->SetUIResourceId(resource->id()); | 70 test_layer->SetUIResourceId(resource->id()); |
| 73 test_layer->SetFillCenter(fill_center); | 71 test_layer->SetFillCenter(fill_center); |
| 74 test_layer->Update(); | 72 test_layer->Update(); |
| 75 | 73 |
| 76 EXPECT_TRUE(test_layer->DrawsContent()); | 74 EXPECT_TRUE(test_layer->DrawsContent()); |
| 77 } | 75 } |
| 78 | 76 |
| 79 } // namespace | 77 } // namespace |
| 80 } // namespace cc | 78 } // namespace cc |
| OLD | NEW |