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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h

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/animatable/AnimatableNeutral.h
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h b/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h
index 5bb858f4f5b2415af36ab0a6099ec87fee8ca619..11653fec484f2a2aedb4f7f8bee50f78aaba5379 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableNeutral.h
@@ -43,7 +43,7 @@ protected:
static PassRefPtr<AnimatableNeutral> create() { return adoptRef(new AnimatableNeutral()); }
PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue* value, double fraction) const override
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
@@ -52,7 +52,7 @@ private:
AnimatableType type() const override { return TypeNeutral; }
bool equalTo(const AnimatableValue* value) const override
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return true;
}
};

Powered by Google App Engine
This is Rietveld 408576698