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 "config.h" | 5 #include "config.h" |
6 | 6 |
7 #include "cc/solid_color_layer_impl.h" | 7 #include "cc/solid_color_layer_impl.h" |
8 | 8 |
9 #include "cc/append_quads_data.h" | 9 #include "cc/append_quads_data.h" |
10 #include "cc/single_thread_proxy.h" | 10 #include "cc/single_thread_proxy.h" |
11 #include "cc/solid_color_draw_quad.h" | 11 #include "cc/solid_color_draw_quad.h" |
12 #include "cc/solid_color_layer.h" | 12 #include "cc/solid_color_layer.h" |
13 #include "cc/test/layer_test_common.h" | 13 #include "cc/test/layer_test_common.h" |
14 #include "cc/test/mock_quad_culler.h" | 14 #include "cc/test/mock_quad_culler.h" |
15 #include "testing/gmock/include/gmock/gmock.h" | 15 #include "testing/gmock/include/gmock/gmock.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
17 | 17 |
18 using namespace cc; | |
19 using namespace LayerTestCommon; | 18 using namespace LayerTestCommon; |
20 | 19 |
| 20 namespace cc { |
21 namespace { | 21 namespace { |
22 | 22 |
23 TEST(SolidColorLayerImplTest, verifyTilingCompleteAndNoOverlap) | 23 TEST(SolidColorLayerImplTest, verifyTilingCompleteAndNoOverlap) |
24 { | 24 { |
25 MockQuadCuller quadCuller; | 25 MockQuadCuller quadCuller; |
26 gfx::Size layerSize = gfx::Size(800, 600); | 26 gfx::Size layerSize = gfx::Size(800, 600); |
27 gfx::Rect visibleContentRect = gfx::Rect(gfx::Point(), layerSize); | 27 gfx::Rect visibleContentRect = gfx::Rect(gfx::Point(), layerSize); |
28 | 28 |
29 scoped_ptr<SolidColorLayerImpl> layer = SolidColorLayerImpl::create(1); | 29 scoped_ptr<SolidColorLayerImpl> layer = SolidColorLayerImpl::create(1); |
30 layer->setVisibleContentRect(visibleContentRect); | 30 layer->setVisibleContentRect(visibleContentRect); |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 | 134 |
135 MockQuadCuller quadCuller; | 135 MockQuadCuller quadCuller; |
136 AppendQuadsData data; | 136 AppendQuadsData data; |
137 layerImpl->appendQuads(quadCuller, data); | 137 layerImpl->appendQuads(quadCuller, data); |
138 | 138 |
139 ASSERT_EQ(quadCuller.quadList().size(), 1U); | 139 ASSERT_EQ(quadCuller.quadList().size(), 1U); |
140 EXPECT_EQ(gfx::Rect().ToString(), quadCuller.quadList()[0]->opaqueRect()
.ToString()); | 140 EXPECT_EQ(gfx::Rect().ToString(), quadCuller.quadList()[0]->opaqueRect()
.ToString()); |
141 } | 141 } |
142 } | 142 } |
143 | 143 |
144 } // anonymous namespace | 144 } // namespace |
| 145 } // namespace cc |
OLD | NEW |