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

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

Issue 73643004: Web Animations: Extract an API for servicing animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Switch to references for non-null params. Created 7 years, 1 month 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
Index: Source/core/animation/Player.cpp
diff --git a/Source/core/animation/Player.cpp b/Source/core/animation/Player.cpp
index 881195feef92c3f64d23b6db5c634190c01005bc..ee2d104621ad13f0a63d38f2ffb6fb0773747fc1 100644
--- a/Source/core/animation/Player.cpp
+++ b/Source/core/animation/Player.cpp
@@ -165,7 +165,6 @@ void Player::setCurrentTime(double seekTime)
void Player::pauseForTesting()
{
// FIXME: Need to support pausing compositor animations to pass virtual/threaded tests.
- RELEASE_ASSERT(!hasActiveAnimationsOnCompositor());
Steve Block 2013/11/20 00:36:16 Why is this removed?
dstockwell 2013/11/20 00:49:16 This allows the tests to pass, although they may n
RELEASE_ASSERT(!paused());
m_isPausedForTesting = true;
setPausedImpl(true);

Powered by Google App Engine
This is Rietveld 408576698