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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurface(bool fallback); | 203 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurface(bool fallback); |
203 | 204 |
204 TestWebGraphicsContext3D* TestContext(); | 205 TestWebGraphicsContext3D* TestContext(); |
205 | 206 |
206 | 207 |
207 private: | 208 private: |
208 LayerTreeSettings settings_; | 209 LayerTreeSettings settings_; |
209 scoped_ptr<LayerTreeHostClientForTesting> client_; | 210 scoped_ptr<LayerTreeHostClientForTesting> client_; |
210 scoped_ptr<LayerTreeHost> layer_tree_host_; | 211 scoped_ptr<LayerTreeHost> layer_tree_host_; |
211 FakeOutputSurface* output_surface_; | 212 FakeOutputSurface* output_surface_; |
| 213 ExternalBeginFrameSourceForTest* external_begin_frame_source_; |
212 | 214 |
213 bool beginning_; | 215 bool beginning_; |
214 bool end_when_begin_returns_; | 216 bool end_when_begin_returns_; |
215 bool timed_out_; | 217 bool timed_out_; |
216 bool scheduled_; | 218 bool scheduled_; |
217 bool started_; | 219 bool started_; |
218 bool ended_; | 220 bool ended_; |
219 bool delegating_renderer_; | 221 bool delegating_renderer_; |
220 | 222 |
221 int timeout_seconds_; | 223 int timeout_seconds_; |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ | 329 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ |
328 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) | 330 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) |
329 | 331 |
330 // Some tests want to control when notify ready for activation occurs, | 332 // Some tests want to control when notify ready for activation occurs, |
331 // but this is not supported in the single-threaded case. | 333 // but this is not supported in the single-threaded case. |
332 #define SINGLE_AND_MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \ | 334 #define SINGLE_AND_MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \ |
333 SINGLE_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ | 335 SINGLE_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ |
334 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) | 336 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) |
335 | 337 |
336 #endif // CC_TEST_LAYER_TREE_TEST_H_ | 338 #endif // CC_TEST_LAYER_TREE_TEST_H_ |
OLD | NEW |