OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "ui/compositor/test/test_layer_animation_delegate.h" | 5 #include "ui/compositor/test/test_layer_animation_delegate.h" |
6 | 6 |
7 namespace ui { | 7 namespace ui { |
8 | 8 |
9 TestLayerAnimationDelegate::TestLayerAnimationDelegate() | 9 TestLayerAnimationDelegate::TestLayerAnimationDelegate() |
10 : opacity_(1.0f), | 10 : opacity_(1.0f), |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 return 1.0f; | 91 return 1.0f; |
92 } | 92 } |
93 | 93 |
94 void TestLayerAnimationDelegate::AddThreadedAnimation( | 94 void TestLayerAnimationDelegate::AddThreadedAnimation( |
95 scoped_ptr<cc::Animation> animation) { | 95 scoped_ptr<cc::Animation> animation) { |
96 } | 96 } |
97 | 97 |
98 void TestLayerAnimationDelegate::RemoveThreadedAnimation(int animation_id) { | 98 void TestLayerAnimationDelegate::RemoveThreadedAnimation(int animation_id) { |
99 } | 99 } |
100 | 100 |
101 LayerAnimatorCollection* | |
102 TestLayerAnimationDelegate::GetLayerAnimatorCollection() { | |
103 return NULL; | |
104 } | |
105 | |
106 } // namespace ui | 101 } // namespace ui |
OLD | NEW |