| 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 #include "cc/test/animation_timelines_test_common.h" | 5 #include "cc/test/animation_timelines_test_common.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "cc/animation/animation_events.h" | 8 #include "cc/animation/animation_events.h" |
| 9 #include "cc/animation/animation_id_provider.h" | 9 #include "cc/animation/animation_id_provider.h" |
| 10 #include "cc/animation/animation_player.h" | 10 #include "cc/animation/animation_player.h" |
| 11 #include "cc/animation/animation_timeline.h" | 11 #include "cc/animation/animation_timeline.h" |
| 12 #include "cc/animation/element_animations.h" | 12 #include "cc/animation/element_animations.h" |
| 13 #include "cc/output/filter_operation.h" | 13 #include "cc/paint/filter_operation.h" |
| 14 #include "cc/output/filter_operations.h" | 14 #include "cc/paint/filter_operations.h" |
| 15 #include "ui/gfx/transform.h" | 15 #include "ui/gfx/transform.h" |
| 16 | 16 |
| 17 namespace cc { | 17 namespace cc { |
| 18 | 18 |
| 19 std::unique_ptr<TestLayer> TestLayer::Create() { | 19 std::unique_ptr<TestLayer> TestLayer::Create() { |
| 20 return base::WrapUnique(new TestLayer()); | 20 return base::WrapUnique(new TestLayer()); |
| 21 } | 21 } |
| 22 | 22 |
| 23 TestLayer::TestLayer() { | 23 TestLayer::TestLayer() { |
| 24 ClearMutatedProperties(); | 24 ClearMutatedProperties(); |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 } | 488 } |
| 489 | 489 |
| 490 return result; | 490 return result; |
| 491 } | 491 } |
| 492 | 492 |
| 493 void AnimationTimelinesTest::PushProperties() { | 493 void AnimationTimelinesTest::PushProperties() { |
| 494 host_->PushPropertiesTo(host_impl_); | 494 host_->PushPropertiesTo(host_impl_); |
| 495 } | 495 } |
| 496 | 496 |
| 497 } // namespace cc | 497 } // namespace cc |
| OLD | NEW |