| Index: cc/test/layer_test_common.cc
|
| diff --git a/cc/test/layer_test_common.cc b/cc/test/layer_test_common.cc
|
| index fda251c0c0fbd07b05a7c464b5f3b2d8f3ba929b..30037b63df37a0ea2858cebf7ad446df98d58e30 100644
|
| --- a/cc/test/layer_test_common.cc
|
| +++ b/cc/test/layer_test_common.cc
|
| @@ -9,17 +9,17 @@
|
| #include "CCDrawQuad.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -namespace CCLayerTestCommon {
|
| +namespace LayerTestCommon {
|
|
|
| // Align with expected and actual output
|
| const char* quadString = " Quad: ";
|
|
|
| -void verifyQuadsExactlyCoverRect(const cc::CCQuadList& quads,
|
| +void verifyQuadsExactlyCoverRect(const cc::QuadList& quads,
|
| const cc::IntRect& rect) {
|
| cc::Region remaining(rect);
|
|
|
| for (size_t i = 0; i < quads.size(); ++i) {
|
| - cc::CCDrawQuad* quad = quads[i];
|
| + cc::DrawQuad* quad = quads[i];
|
| cc::IntRect quadRect = quad->quadRect();
|
|
|
| EXPECT_TRUE(rect.contains(quadRect)) << quadString << i;
|
| @@ -30,4 +30,4 @@ void verifyQuadsExactlyCoverRect(const cc::CCQuadList& quads,
|
| EXPECT_TRUE(remaining.isEmpty());
|
| }
|
|
|
| -} // namespace CCLayerTestCommon
|
| +} // namespace LayerTestCommon
|
|
|