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

Unified Diff: sky/engine/core/animation/AnimationPlayerTest.cpp

Issue 922893002: Merge the Sky Engine changes from the SkyDart branch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « sky/engine/core/animation/AnimationPlayer.cpp ('k') | sky/engine/core/animation/AnimationTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/animation/AnimationPlayerTest.cpp
diff --git a/sky/engine/core/animation/AnimationPlayerTest.cpp b/sky/engine/core/animation/AnimationPlayerTest.cpp
index c458135388b50d1c54b84e4e4cf13256f7a8f842..61bee409f9939bc172f5f0b8a0c02bf58307bf1e 100644
--- a/sky/engine/core/animation/AnimationPlayerTest.cpp
+++ b/sky/engine/core/animation/AnimationPlayerTest.cpp
@@ -487,7 +487,7 @@ TEST_F(AnimationAnimationPlayerTest, Finish)
EXPECT_EQ(0, player->currentTimeInternal());
EXPECT_TRUE(player->finished());
- EXPECT_FALSE(exceptionState.hadException());
+ EXPECT_FALSE(exceptionState.had_exception());
}
TEST_F(AnimationAnimationPlayerTest, FinishAfterSourceEnd)
@@ -523,7 +523,7 @@ TEST_F(AnimationAnimationPlayerTest, FinishRaisesException)
player->finish(exceptionState);
EXPECT_EQ(10, player->currentTimeInternal());
- EXPECT_TRUE(exceptionState.hadException());
+ EXPECT_TRUE(exceptionState.had_exception());
EXPECT_EQ(InvalidStateError, exceptionState.code());
}
« no previous file with comments | « sky/engine/core/animation/AnimationPlayer.cpp ('k') | sky/engine/core/animation/AnimationTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698