Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4381)

Unified Diff: cc/animation/element_animations_unittest.cc

Issue 2291463003: Revert "CC Animation: Introduce some dirty flags to optimize PushProperties on commit" (Closed)
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/animation/element_animations.cc ('k') | cc/animation/scroll_offset_animations.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/element_animations_unittest.cc
diff --git a/cc/animation/element_animations_unittest.cc b/cc/animation/element_animations_unittest.cc
index 0977f790f9bf6518ebc5de8c85416c55d91c69ce..34107fc5c56bac9e437930be8c6bc59f25f996f2 100644
--- a/cc/animation/element_animations_unittest.cc
+++ b/cc/animation/element_animations_unittest.cc
@@ -665,7 +665,6 @@ TEST_F(ElementAnimationsTest, AnimationsAreDeleted) {
false);
animations->Animate(kInitialTickTime);
animations->UpdateState(true, nullptr);
- EXPECT_TRUE(animations->needs_push_properties());
animations->PushPropertiesTo(animations_impl.get());
animations_impl->ActivateAnimations();
@@ -680,15 +679,15 @@ TEST_F(ElementAnimationsTest, AnimationsAreDeleted) {
animations->Animate(kInitialTickTime + TimeDelta::FromMilliseconds(1000));
animations->UpdateState(true, nullptr);
- EXPECT_FALSE(host_->needs_push_properties());
- EXPECT_FALSE(host_impl_->needs_push_properties());
+ EXPECT_FALSE(host_->animation_waiting_for_deletion());
+ EXPECT_FALSE(host_impl_->animation_waiting_for_deletion());
events = host_impl_->CreateEvents();
animations_impl->Animate(kInitialTickTime +
TimeDelta::FromMilliseconds(2000));
animations_impl->UpdateState(true, events.get());
- EXPECT_TRUE(host_impl_->needs_push_properties());
+ EXPECT_TRUE(host_impl_->animation_waiting_for_deletion());
// There should be a FINISHED event for the animation.
EXPECT_EQ(1u, events->events_.size());
@@ -702,7 +701,7 @@ TEST_F(ElementAnimationsTest, AnimationsAreDeleted) {
animations->Animate(kInitialTickTime + TimeDelta::FromMilliseconds(3000));
animations->UpdateState(true, nullptr);
- EXPECT_TRUE(host_->needs_push_properties());
+ EXPECT_TRUE(host_->animation_waiting_for_deletion());
animations->PushPropertiesTo(animations_impl.get());
@@ -1688,7 +1687,6 @@ TEST_F(ElementAnimationsTest, PushUpdatesWhenSynchronizedStartTimeNeeded) {
EXPECT_TRUE(active_animation);
EXPECT_TRUE(active_animation->needs_synchronized_start_time());
- EXPECT_TRUE(animations->needs_push_properties());
animations->PushPropertiesTo(animations_impl.get());
animations_impl->ActivateAnimations();
@@ -1952,16 +1950,15 @@ TEST_F(ElementAnimationsTest, MainThreadAbortedAnimationGetsDeleted) {
animations->AbortAnimations(TargetProperty::OPACITY);
EXPECT_EQ(Animation::ABORTED,
animations->GetAnimation(TargetProperty::OPACITY)->run_state());
- EXPECT_FALSE(host_->needs_push_properties());
- EXPECT_FALSE(host_impl_->needs_push_properties());
+ EXPECT_FALSE(host_->animation_waiting_for_deletion());
+ EXPECT_FALSE(host_impl_->animation_waiting_for_deletion());
animations->Animate(kInitialTickTime);
animations->UpdateState(true, nullptr);
- EXPECT_FALSE(host_->needs_push_properties());
+ EXPECT_FALSE(host_->animation_waiting_for_deletion());
EXPECT_EQ(Animation::ABORTED,
animations->GetAnimation(TargetProperty::OPACITY)->run_state());
- EXPECT_TRUE(animations->needs_push_properties());
animations->PushPropertiesTo(animations_impl.get());
EXPECT_FALSE(animations->GetAnimationById(animation_id));
EXPECT_FALSE(animations_impl->GetAnimationById(animation_id));
@@ -1990,13 +1987,13 @@ TEST_F(ElementAnimationsTest, ImplThreadAbortedAnimationGetsDeleted) {
EXPECT_EQ(
Animation::ABORTED,
animations_impl->GetAnimation(TargetProperty::OPACITY)->run_state());
- EXPECT_FALSE(host_->needs_push_properties());
- EXPECT_FALSE(host_impl_->needs_push_properties());
+ EXPECT_FALSE(host_->animation_waiting_for_deletion());
+ EXPECT_FALSE(host_impl_->animation_waiting_for_deletion());
auto events = host_impl_->CreateEvents();
animations_impl->Animate(kInitialTickTime);
animations_impl->UpdateState(true, events.get());
- EXPECT_TRUE(host_impl_->needs_push_properties());
+ EXPECT_TRUE(host_impl_->animation_waiting_for_deletion());
EXPECT_EQ(1u, events->events_.size());
EXPECT_EQ(AnimationEvent::ABORTED, events->events_[0].type);
EXPECT_EQ(
@@ -2010,7 +2007,7 @@ TEST_F(ElementAnimationsTest, ImplThreadAbortedAnimationGetsDeleted) {
animations->Animate(kInitialTickTime + TimeDelta::FromMilliseconds(500));
animations->UpdateState(true, nullptr);
- EXPECT_TRUE(host_->needs_push_properties());
+ EXPECT_TRUE(host_->animation_waiting_for_deletion());
EXPECT_EQ(Animation::WAITING_FOR_DELETION,
animations->GetAnimation(TargetProperty::OPACITY)->run_state());
@@ -2060,14 +2057,14 @@ TEST_F(ElementAnimationsTest, ImplThreadTakeoverAnimationGetsDeleted) {
EXPECT_EQ(Animation::ABORTED_BUT_NEEDS_COMPLETION,
animations_impl->GetAnimation(TargetProperty::SCROLL_OFFSET)
->run_state());
- EXPECT_FALSE(host_->needs_push_properties());
- EXPECT_FALSE(host_impl_->needs_push_properties());
+ EXPECT_FALSE(host_->animation_waiting_for_deletion());
+ EXPECT_FALSE(host_impl_->animation_waiting_for_deletion());
auto events = host_impl_->CreateEvents();
animations_impl->Animate(kInitialTickTime);
animations_impl->UpdateState(true, events.get());
EXPECT_TRUE(delegate_impl.finished());
- EXPECT_TRUE(host_impl_->needs_push_properties());
+ EXPECT_TRUE(host_impl_->animation_waiting_for_deletion());
EXPECT_EQ(1u, events->events_.size());
EXPECT_EQ(AnimationEvent::TAKEOVER, events->events_[0].type);
EXPECT_EQ(123, events->events_[0].animation_start_time);
@@ -2078,16 +2075,9 @@ TEST_F(ElementAnimationsTest, ImplThreadTakeoverAnimationGetsDeleted) {
animations_impl->GetAnimation(TargetProperty::SCROLL_OFFSET)
->run_state());
- // MT receives the event to take over.
animations->NotifyAnimationTakeover(events->events_[0]);
EXPECT_TRUE(delegate.takeover());
- // AnimationPlayer::NotifyAnimationTakeover requests SetNeedsPushProperties
- // to purge CT animations marked for deletion.
- EXPECT_TRUE(animations->needs_push_properties());
-
- // ElementAnimations::PurgeAnimationsMarkedForDeletion call happens only in
- // ElementAnimations::PushPropertiesTo.
animations->PushPropertiesTo(animations_impl.get());
animations_impl->ActivateAnimations();
EXPECT_FALSE(animations->GetAnimationById(animation_id));
« no previous file with comments | « cc/animation/element_animations.cc ('k') | cc/animation/scroll_offset_animations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698