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" |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
174 } | 174 } |
175 Proxy* proxy() const { | 175 Proxy* proxy() const { |
176 return layer_tree_host_ ? layer_tree_host_->proxy() : NULL; | 176 return layer_tree_host_ ? layer_tree_host_->proxy() : NULL; |
177 } | 177 } |
178 | 178 |
179 bool TestEnded() const { return ended_; } | 179 bool TestEnded() const { return ended_; } |
180 | 180 |
181 LayerTreeHost* layer_tree_host() { return layer_tree_host_.get(); } | 181 LayerTreeHost* layer_tree_host() { return layer_tree_host_.get(); } |
182 bool delegating_renderer() const { return delegating_renderer_; } | 182 bool delegating_renderer() const { return delegating_renderer_; } |
183 FakeOutputSurface* output_surface() { return output_surface_; } | 183 FakeOutputSurface* output_surface() { return output_surface_; } |
184 int LastCommittedSourceFrameNumber(LayerTreeHostImpl* impl) const; | |
brianderson
2014/01/23 22:48:49
Nifty!
| |
184 | 185 |
185 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) OVERRIDE; | 186 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) OVERRIDE; |
186 virtual scoped_refptr<ContextProvider> OffscreenContextProvider() OVERRIDE; | 187 virtual scoped_refptr<ContextProvider> OffscreenContextProvider() OVERRIDE; |
187 | 188 |
188 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurfaceForTest( | 189 virtual scoped_ptr<FakeOutputSurface> CreateFakeOutputSurfaceForTest( |
189 bool fallback); | 190 bool fallback); |
190 | 191 |
191 TestWebGraphicsContext3D* TestContext(); | 192 TestWebGraphicsContext3D* TestContext(); |
192 | 193 |
193 | 194 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
287 | 288 |
288 #define SINGLE_AND_MULTI_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME) \ | 289 #define SINGLE_AND_MULTI_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME) \ |
289 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ | 290 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ |
290 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME) | 291 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME) |
291 | 292 |
292 #define SINGLE_AND_MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \ | 293 #define SINGLE_AND_MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \ |
293 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ | 294 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ |
294 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) | 295 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) |
295 | 296 |
296 #endif // CC_TEST_LAYER_TREE_TEST_H_ | 297 #endif // CC_TEST_LAYER_TREE_TEST_H_ |
OLD | NEW |