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

Unified Diff: third_party/WebKit/Source/core/animation/KeyframeEffect.cpp

Issue 2109333002: Replace ASSERT_NOT_REACHED with NOTREACHED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
Index: third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
index cafbfed9cfbe411ed43ad6dee8a9a61e6e09a1b2..5d480edfc656d7ccdf24d6886d5609b8ca6e5a16 100644
--- a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
@@ -265,7 +265,7 @@ double KeyframeEffect::calculateTimeToEffectChange(bool forwards, double localTi
? std::numeric_limits<double>::infinity()
: localTime - afterTime;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return std::numeric_limits<double>::infinity();
}
}

Powered by Google App Engine
This is Rietveld 408576698