OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "cc/animation/layer_animation_controller.h" | 5 #include "cc/animation/layer_animation_controller.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include "cc/animation/animation.h" | 9 #include "cc/animation/animation.h" |
8 #include "cc/animation/animation_curve.h" | 10 #include "cc/animation/animation_curve.h" |
9 #include "cc/animation/animation_delegate.h" | 11 #include "cc/animation/animation_delegate.h" |
10 #include "cc/animation/animation_registrar.h" | 12 #include "cc/animation/animation_registrar.h" |
11 #include "cc/animation/keyframed_animation_curve.h" | 13 #include "cc/animation/keyframed_animation_curve.h" |
12 #include "cc/animation/scroll_offset_animation_curve.h" | 14 #include "cc/animation/scroll_offset_animation_curve.h" |
13 #include "cc/animation/transform_operations.h" | 15 #include "cc/animation/transform_operations.h" |
14 #include "cc/test/animation_test_common.h" | 16 #include "cc/test/animation_test_common.h" |
15 #include "testing/gmock/include/gmock/gmock.h" | 17 #include "testing/gmock/include/gmock/gmock.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 2984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3001 EXPECT_FALSE(controller->IsPotentiallyAnimatingProperty( | 3003 EXPECT_FALSE(controller->IsPotentiallyAnimatingProperty( |
3002 Animation::OPACITY, LayerAnimationController::ObserverType::ACTIVE)); | 3004 Animation::OPACITY, LayerAnimationController::ObserverType::ACTIVE)); |
3003 EXPECT_FALSE(controller->IsCurrentlyAnimatingProperty( | 3005 EXPECT_FALSE(controller->IsCurrentlyAnimatingProperty( |
3004 Animation::OPACITY, LayerAnimationController::ObserverType::PENDING)); | 3006 Animation::OPACITY, LayerAnimationController::ObserverType::PENDING)); |
3005 EXPECT_FALSE(controller->IsCurrentlyAnimatingProperty( | 3007 EXPECT_FALSE(controller->IsCurrentlyAnimatingProperty( |
3006 Animation::OPACITY, LayerAnimationController::ObserverType::ACTIVE)); | 3008 Animation::OPACITY, LayerAnimationController::ObserverType::ACTIVE)); |
3007 } | 3009 } |
3008 | 3010 |
3009 } // namespace | 3011 } // namespace |
3010 } // namespace cc | 3012 } // namespace cc |
OLD | NEW |