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" |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 needs_push_properties) { | 540 needs_push_properties) { |
541 ADD_FAILURE() << "player_->element_animations()->needs_push_properties() " | 541 ADD_FAILURE() << "player_->element_animations()->needs_push_properties() " |
542 "expected to be " | 542 "expected to be " |
543 << needs_push_properties; | 543 << needs_push_properties; |
544 result = false; | 544 result = false; |
545 } | 545 } |
546 | 546 |
547 return result; | 547 return result; |
548 } | 548 } |
549 | 549 |
| 550 void AnimationTimelinesTest::PushProperties() { |
| 551 host_->PushPropertiesTo(host_impl_); |
| 552 } |
| 553 |
550 } // namespace cc | 554 } // namespace cc |
OLD | NEW |