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

Unified Diff: third_party/WebKit/Source/platform/animation/TimingFunction.cpp

Issue 2849903002: Replace ASSERT_NOT_REACHED with NOTREACHED in platform/ (Closed)
Patch Set: rebase Created 3 years, 8 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/platform/animation/TimingFunction.cpp
diff --git a/third_party/WebKit/Source/platform/animation/TimingFunction.cpp b/third_party/WebKit/Source/platform/animation/TimingFunction.cpp
index 86e7cdc8fa5c12361ab0aa42e943c4326646104f..13ae1b9584c62fbbceeaef9c44bf80fc93867cd5 100644
--- a/third_party/WebKit/Source/platform/animation/TimingFunction.cpp
+++ b/third_party/WebKit/Source/platform/animation/TimingFunction.cpp
@@ -219,7 +219,7 @@ bool operator==(const TimingFunction& lhs, const TimingFunction& rhs) {
return (frame == rhs);
}
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
return false;
}

Powered by Google App Engine
This is Rietveld 408576698