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 FakeExternalBeginFrameSource; |
21 class FakeLayerTreeHostClient; | 21 class FakeLayerTreeHostClient; |
22 class FakeOutputSurface; | 22 class FakeOutputSurface; |
23 class LayerImpl; | 23 class LayerImpl; |
24 class LayerTreeHost; | 24 class LayerTreeHost; |
25 class LayerTreeHostClient; | 25 class LayerTreeHostClient; |
26 class LayerTreeHostImpl; | 26 class LayerTreeHostImpl; |
27 class TestContextProvider; | 27 class TestContextProvider; |
28 class TestWebGraphicsContext3D; | 28 class TestWebGraphicsContext3D; |
29 | 29 |
30 // 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurface(); | 209 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurface(); |
210 | 210 |
211 TestWebGraphicsContext3D* TestContext(); | 211 TestWebGraphicsContext3D* TestContext(); |
212 | 212 |
213 | 213 |
214 private: | 214 private: |
215 LayerTreeSettings settings_; | 215 LayerTreeSettings settings_; |
216 scoped_ptr<LayerTreeHostClientForTesting> client_; | 216 scoped_ptr<LayerTreeHostClientForTesting> client_; |
217 scoped_ptr<LayerTreeHost> layer_tree_host_; | 217 scoped_ptr<LayerTreeHost> layer_tree_host_; |
218 FakeOutputSurface* output_surface_; | 218 FakeOutputSurface* output_surface_; |
219 ExternalBeginFrameSourceForTest* external_begin_frame_source_; | 219 FakeExternalBeginFrameSource* external_begin_frame_source_; |
220 | 220 |
221 bool beginning_; | 221 bool beginning_; |
222 bool end_when_begin_returns_; | 222 bool end_when_begin_returns_; |
223 bool timed_out_; | 223 bool timed_out_; |
224 bool scheduled_; | 224 bool scheduled_; |
225 bool started_; | 225 bool started_; |
226 bool ended_; | 226 bool ended_; |
227 bool delegating_renderer_; | 227 bool delegating_renderer_; |
228 | 228 |
229 int timeout_seconds_; | 229 int timeout_seconds_; |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ | 368 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ |
369 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) | 369 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) |
370 | 370 |
371 // Some tests want to control when notify ready for activation occurs, | 371 // Some tests want to control when notify ready for activation occurs, |
372 // but this is not supported in the single-threaded case. | 372 // but this is not supported in the single-threaded case. |
373 #define SINGLE_AND_MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \ | 373 #define SINGLE_AND_MULTI_THREAD_BLOCKNOTIFY_TEST_F(TEST_FIXTURE_NAME) \ |
374 SINGLE_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ | 374 SINGLE_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ |
375 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) | 375 MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) |
376 | 376 |
377 #endif // CC_TEST_LAYER_TREE_TEST_H_ | 377 #endif // CC_TEST_LAYER_TREE_TEST_H_ |
OLD | NEW |