| 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 <utility> |
| 9 #include <vector> |
| 10 |
| 8 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 9 #include "base/threading/thread.h" | 12 #include "base/threading/thread.h" |
| 10 #include "cc/animation/animation_delegate.h" | 13 #include "cc/animation/animation_delegate.h" |
| 11 #include "cc/trees/layer_tree_host.h" | 14 #include "cc/trees/layer_tree_host.h" |
| 12 #include "cc/trees/layer_tree_host_impl.h" | 15 #include "cc/trees/layer_tree_host_impl.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 14 | 17 |
| 15 namespace Webkit { | 18 namespace Webkit { |
| 16 class WebGraphicsContext3D; | 19 class WebGraphicsContext3D; |
| 17 } | 20 } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 virtual void SwapBuffersCompleteOnThread(LayerTreeHostImpl* host_impl) {} | 56 virtual void SwapBuffersCompleteOnThread(LayerTreeHostImpl* host_impl) {} |
| 54 virtual void UpdateVisibleTilesOnThread(LayerTreeHostImpl* host_impl) {} | 57 virtual void UpdateVisibleTilesOnThread(LayerTreeHostImpl* host_impl) {} |
| 55 virtual void AnimateLayers(LayerTreeHostImpl* host_impl, | 58 virtual void AnimateLayers(LayerTreeHostImpl* host_impl, |
| 56 base::TimeTicks monotonic_time) {} | 59 base::TimeTicks monotonic_time) {} |
| 57 virtual void UpdateAnimationState(LayerTreeHostImpl* host_impl, | 60 virtual void UpdateAnimationState(LayerTreeHostImpl* host_impl, |
| 58 bool has_unfinished_animation) {} | 61 bool has_unfinished_animation) {} |
| 59 virtual void WillAnimateLayers(LayerTreeHostImpl* host_impl, | 62 virtual void WillAnimateLayers(LayerTreeHostImpl* host_impl, |
| 60 base::TimeTicks monotonic_time) {} | 63 base::TimeTicks monotonic_time) {} |
| 61 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta, | 64 virtual void ApplyScrollAndScale(const gfx::Vector2d& scroll_delta, |
| 62 float scale) {} | 65 float scale) {} |
| 66 virtual void RecordDrawTiming(int64_t rect_id, |
| 67 const std::vector<std::pair<int, base::TimeTicks> >& draws) {} |
| 63 virtual void Animate(base::TimeTicks monotonic_time) {} | 68 virtual void Animate(base::TimeTicks monotonic_time) {} |
| 64 virtual void WillBeginMainFrame() {} | 69 virtual void WillBeginMainFrame() {} |
| 65 virtual void DidBeginMainFrame() {} | 70 virtual void DidBeginMainFrame() {} |
| 66 virtual void Layout() {} | 71 virtual void Layout() {} |
| 67 virtual void DidInitializeOutputSurface() {} | 72 virtual void DidInitializeOutputSurface() {} |
| 68 virtual void DidFailToInitializeOutputSurface() {} | 73 virtual void DidFailToInitializeOutputSurface() {} |
| 69 virtual void DidAddAnimation() {} | 74 virtual void DidAddAnimation() {} |
| 70 virtual void WillCommit() {} | 75 virtual void WillCommit() {} |
| 71 virtual void DidCommit() {} | 76 virtual void DidCommit() {} |
| 72 virtual void DidCommitAndDrawFrame() {} | 77 virtual void DidCommitAndDrawFrame() {} |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 295 |
| 291 #define SINGLE_AND_MULTI_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME) \ | 296 #define SINGLE_AND_MULTI_THREAD_NOIMPL_TEST_F(TEST_FIXTURE_NAME) \ |
| 292 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ | 297 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME); \ |
| 293 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME) | 298 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_NOIMPL_TEST_F(TEST_FIXTURE_NAME) |
| 294 | 299 |
| 295 #define SINGLE_AND_MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \ | 300 #define SINGLE_AND_MULTI_THREAD_TEST_F(TEST_FIXTURE_NAME) \ |
| 296 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ | 301 SINGLE_AND_MULTI_THREAD_DIRECT_RENDERER_TEST_F(TEST_FIXTURE_NAME); \ |
| 297 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) | 302 SINGLE_AND_MULTI_THREAD_DELEGATING_RENDERER_TEST_F(TEST_FIXTURE_NAME) |
| 298 | 303 |
| 299 #endif // CC_TEST_LAYER_TREE_TEST_H_ | 304 #endif // CC_TEST_LAYER_TREE_TEST_H_ |
| OLD | NEW |