| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 <stddef.h> |
| 6 |
| 5 #include "cc/layers/layer_iterator.h" | 7 #include "cc/layers/layer_iterator.h" |
| 6 #include "cc/output/copy_output_request.h" | 8 #include "cc/output/copy_output_request.h" |
| 7 #include "cc/output/copy_output_result.h" | 9 #include "cc/output/copy_output_result.h" |
| 8 #include "cc/test/fake_content_layer_client.h" | 10 #include "cc/test/fake_content_layer_client.h" |
| 9 #include "cc/test/fake_output_surface.h" | 11 #include "cc/test/fake_output_surface.h" |
| 10 #include "cc/test/fake_picture_layer.h" | 12 #include "cc/test/fake_picture_layer.h" |
| 11 #include "cc/test/layer_tree_test.h" | 13 #include "cc/test/layer_tree_test.h" |
| 12 #include "cc/trees/layer_tree_impl.h" | 14 #include "cc/trees/layer_tree_impl.h" |
| 13 #include "gpu/GLES2/gl2extchromium.h" | 15 #include "gpu/GLES2/gl2extchromium.h" |
| 14 | 16 |
| (...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 int num_draws_; | 1260 int num_draws_; |
| 1259 bool copy_happened_; | 1261 bool copy_happened_; |
| 1260 bool draw_happened_; | 1262 bool draw_happened_; |
| 1261 }; | 1263 }; |
| 1262 | 1264 |
| 1263 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F( | 1265 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F( |
| 1264 LayerTreeHostCopyRequestTestMultipleDrawsHiddenCopyRequest); | 1266 LayerTreeHostCopyRequestTestMultipleDrawsHiddenCopyRequest); |
| 1265 | 1267 |
| 1266 } // namespace | 1268 } // namespace |
| 1267 } // namespace cc | 1269 } // namespace cc |
| OLD | NEW |