| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_TEST_HOOKS_H_ | 5 #ifndef CC_TEST_TEST_HOOKS_H_ |
| 6 #define CC_TEST_TEST_HOOKS_H_ | 6 #define CC_TEST_TEST_HOOKS_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "cc/animation/animation_delegate.h" | 9 #include "cc/animation/animation_delegate.h" |
| 10 #include "cc/trees/layer_tree_host.h" | 10 #include "cc/trees/layer_tree_host.h" |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 int group) override {} | 106 int group) override {} |
| 107 void NotifyAnimationAborted(base::TimeTicks monotonic_time, | 107 void NotifyAnimationAborted(base::TimeTicks monotonic_time, |
| 108 TargetProperty::Type target_property, | 108 TargetProperty::Type target_property, |
| 109 int group) override {} | 109 int group) override {} |
| 110 void NotifyAnimationTakeover(base::TimeTicks monotonic_time, | 110 void NotifyAnimationTakeover(base::TimeTicks monotonic_time, |
| 111 TargetProperty::Type target_property, | 111 TargetProperty::Type target_property, |
| 112 double animation_start_time, | 112 double animation_start_time, |
| 113 std::unique_ptr<AnimationCurve> curve) override { | 113 std::unique_ptr<AnimationCurve> curve) override { |
| 114 } | 114 } |
| 115 | 115 |
| 116 // OutputSurface indirections to the LayerTreeTest, that can be further |
| 117 // overridden. |
| 116 virtual void RequestNewCompositorFrameSink() = 0; | 118 virtual void RequestNewCompositorFrameSink() = 0; |
| 119 virtual std::unique_ptr<OutputSurface> CreateDisplayOutputSurfaceOnThread( |
| 120 scoped_refptr<ContextProvider> compositor_context_provider) = 0; |
| 117 }; | 121 }; |
| 118 | 122 |
| 119 } // namespace cc | 123 } // namespace cc |
| 120 | 124 |
| 121 #endif // CC_TEST_TEST_HOOKS_H_ | 125 #endif // CC_TEST_TEST_HOOKS_H_ |
| OLD | NEW |