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

Unified Diff: third_party/WebKit/Source/core/animation/Animation.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/BasicShapeInterpolationFunctions.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/Animation.cpp
diff --git a/third_party/WebKit/Source/core/animation/Animation.cpp b/third_party/WebKit/Source/core/animation/Animation.cpp
index eb9f17f7e424c6d103d804908e7918762eae7999..2c3571826acae5698427e45b8c8ba8fd2c7f8d59 100644
--- a/third_party/WebKit/Source/core/animation/Animation.cpp
+++ b/third_party/WebKit/Source/core/animation/Animation.cpp
@@ -327,7 +327,7 @@ void Animation::postCommit(double timelineTime)
m_currentTimePending = false;
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
}
@@ -484,7 +484,7 @@ const char* Animation::playStateString(AnimationPlayState playState)
case Finished:
return "finished";
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "";
}
}
@@ -1039,7 +1039,7 @@ Animation::PlayStateUpdateScope::~PlayStateUpdateScope()
case DoNotSetCompositorPending:
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
}
m_animation->endUpdatingState();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/BasicShapeInterpolationFunctions.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698