| 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/trees/layer_tree_host.h" | 5 #include "cc/trees/layer_tree_host.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "cc/layers/render_surface_impl.h" |
| 8 #include "cc/layers/video_layer.h" | 9 #include "cc/layers/video_layer.h" |
| 9 #include "cc/layers/video_layer_impl.h" | 10 #include "cc/layers/video_layer_impl.h" |
| 10 #include "cc/test/fake_video_frame_provider.h" | 11 #include "cc/test/fake_video_frame_provider.h" |
| 11 #include "cc/test/layer_tree_test.h" | 12 #include "cc/test/layer_tree_test.h" |
| 12 #include "cc/trees/damage_tracker.h" | 13 #include "cc/trees/damage_tracker.h" |
| 13 #include "cc/trees/layer_tree_impl.h" | 14 #include "cc/trees/layer_tree_impl.h" |
| 14 | 15 |
| 15 namespace cc { | 16 namespace cc { |
| 16 namespace { | 17 namespace { |
| 17 | 18 |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 private: | 89 private: |
| 89 int num_draws_; | 90 int num_draws_; |
| 90 | 91 |
| 91 FakeVideoFrameProvider video_frame_provider_; | 92 FakeVideoFrameProvider video_frame_provider_; |
| 92 }; | 93 }; |
| 93 | 94 |
| 94 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostVideoTestSetNeedsDisplay); | 95 SINGLE_AND_MULTI_THREAD_TEST_F(LayerTreeHostVideoTestSetNeedsDisplay); |
| 95 | 96 |
| 96 } // namespace | 97 } // namespace |
| 97 } // namespace cc | 98 } // namespace cc |
| OLD | NEW |