| 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();
|
|
|