| 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" | |
| 6 | |
| 7 #include "cc/layer_iterator.h" | 5 #include "cc/layer_iterator.h" |
| 8 | 6 |
| 9 #include "cc/layer.h" | 7 #include "cc/layer.h" |
| 10 #include "cc/layer_tree_host_common.h" | 8 #include "cc/layer_tree_host_common.h" |
| 11 #include "testing/gmock/include/gmock/gmock.h" | 9 #include "testing/gmock/include/gmock/gmock.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| 13 #include <public/WebTransformationMatrix.h> | 11 #include <public/WebTransformationMatrix.h> |
| 14 | 12 |
| 15 using namespace cc; | 13 using namespace cc; |
| 16 using WebKit::WebTransformationMatrix; | 14 using WebKit::WebTransformationMatrix; |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 EXPECT_COUNT(root2, 10, 11, -1); | 244 EXPECT_COUNT(root2, 10, 11, -1); |
| 247 EXPECT_COUNT(root21, -1, -1, 9); | 245 EXPECT_COUNT(root21, -1, -1, 9); |
| 248 EXPECT_COUNT(root22, 7, 8, 6); | 246 EXPECT_COUNT(root22, 7, 8, 6); |
| 249 EXPECT_COUNT(root221, -1, -1, 5); | 247 EXPECT_COUNT(root221, -1, -1, 5); |
| 250 EXPECT_COUNT(root23, 3, 4, 2); | 248 EXPECT_COUNT(root23, 3, 4, 2); |
| 251 EXPECT_COUNT(root231, -1, -1, 1); | 249 EXPECT_COUNT(root231, -1, -1, 1); |
| 252 EXPECT_COUNT(root3, -1, -1, 0); | 250 EXPECT_COUNT(root3, -1, -1, 0); |
| 253 } | 251 } |
| 254 | 252 |
| 255 } // anonymous namespace | 253 } // anonymous namespace |
| OLD | NEW |