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

Unified Diff: Source/core/animation/AnimationPlayerTest.cpp

Issue 425903003: Use HeapHashCountedSet for AnimationPlayerCountedSet (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « Source/core/animation/Animation.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationPlayerTest.cpp
diff --git a/Source/core/animation/AnimationPlayerTest.cpp b/Source/core/animation/AnimationPlayerTest.cpp
index 92176fb7e4616aea7e0b741ab919496567cd87b8..f846dd885d6fac40df90472a26a57639389d1706 100644
--- a/Source/core/animation/AnimationPlayerTest.cpp
+++ b/Source/core/animation/AnimationPlayerTest.cpp
@@ -718,7 +718,7 @@ TEST_F(AnimationAnimationPlayerTest, AttachedAnimationPlayers)
RefPtrWillBeRawPtr<AnimationPlayer> player = timeline->createAnimationPlayer(animation.get());
player->setStartTime(0);
timeline->serviceAnimations(TimingUpdateForAnimationFrame);
- EXPECT_EQ(1, element->activeAnimations()->players().find(player.get())->value);
+ EXPECT_EQ(1U, element->activeAnimations()->players().find(player.get())->value);
player.release();
Heap::collectAllGarbage();
« no previous file with comments | « Source/core/animation/Animation.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698