OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 #ifndef CC_TEST_LAYER_TREE_TEST_H_ | 5 #ifndef CC_TEST_LAYER_TREE_TEST_H_ |
6 #define CC_TEST_LAYER_TREE_TEST_H_ | 6 #define CC_TEST_LAYER_TREE_TEST_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/threading/thread.h" | 9 #include "base/threading/thread.h" |
10 #include "cc/animation/animation_delegate.h" | 10 #include "cc/animation/animation_delegate.h" |
11 #include "cc/trees/layer_tree_host.h" | 11 #include "cc/trees/layer_tree_host.h" |
12 #include "cc/trees/layer_tree_host_impl.h" | 12 #include "cc/trees/layer_tree_host_impl.h" |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 | 14 |
15 namespace Webkit { | 15 namespace Webkit { |
16 class WebGraphicsContext3D; | 16 class WebGraphicsContext3D; |
17 } | 17 } |
18 | 18 |
19 namespace cc { | 19 namespace cc { |
| 20 class ExternalBeginFrameSourceForTest; |
20 class FakeLayerTreeHostClient; | 21 class FakeLayerTreeHostClient; |
21 class FakeOutputSurface; | 22 class FakeOutputSurface; |
22 class LayerImpl; | 23 class LayerImpl; |
23 class LayerTreeHost; | 24 class LayerTreeHost; |
24 class LayerTreeHostClient; | 25 class LayerTreeHostClient; |
25 class LayerTreeHostImpl; | 26 class LayerTreeHostImpl; |
26 class TestContextProvider; | 27 class TestContextProvider; |
27 class TestWebGraphicsContext3D; | 28 class TestWebGraphicsContext3D; |
28 | 29 |
29 // Used by test stubs to notify the test when something interesting happens. | 30 // Used by test stubs to notify the test when something interesting happens. |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurface(bool fallback); | 202 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurface(bool fallback); |
202 | 203 |
203 TestWebGraphicsContext3D* TestContext(); | 204 TestWebGraphicsContext3D* TestContext(); |
204 | 205 |
205 | 206 |
206 private: | 207 private: |
207 LayerTreeSettings settings_; | 208 LayerTreeSettings settings_; |
208 scoped_ptr<LayerTreeHostClientForTesting> client_; | 209 scoped_ptr<LayerTreeHostClientForTesting> client_; |
209 scoped_ptr<LayerTreeHost> layer_tree_host_; | 210 scoped_ptr<LayerTreeHost> layer_tree_host_; |
210 FakeOutputSurface* output_surface_; | 211 FakeOutputSurface* output_surface_; |
| 212 ExternalBeginFrameSourceForTest* external_begin_frame_source_; |
211 | 213 |
212 bool beginning_; | 214 bool beginning_; |
213 bool end_when_begin_returns_; | 215 bool end_when_begin_returns_; |
214 bool timed_out_; | 216 bool timed_out_; |
215 bool scheduled_; | 217 bool scheduled_; |
216 bool started_; | 218 bool started_; |
217 bool ended_; | 219 bool ended_; |
218 bool delegating_renderer_; | 220 bool delegating_renderer_; |
219 | 221 |
220 int timeout_seconds_; | 222 int timeout_seconds_; |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ | 328 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ |
327 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) | 329 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) |
328 | 330 |
329 // Some tests want to control when notify ready for activation occurs, | 331 // Some tests want to control when notify ready for activation occurs, |
330 // but this is not supported in the single-threaded case. | 332 // but this is not supported in the single-threaded case. |
331 #define SINGLE_AND_MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \ | 333 #define SINGLE_AND_MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \ |
332 SINGLE_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ | 334 SINGLE_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ |
333 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) | 335 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) |
334 | 336 |
335 #endif // CC_TEST_LAYER_TREE_TEST_H_ | 337 #endif // CC_TEST_LAYER_TREE_TEST_H_ |
OLD | NEW |