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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioParamTimeline.cpp

Issue 2809023002: Replace ASSERT/ASSERT_NOT_REACHED with DCHECK/NOTREACHED in modules/webaudio (Closed)
Patch Set: 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/modules/webaudio/AudioParamTimeline.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioParamTimeline.cpp b/third_party/WebKit/Source/modules/webaudio/AudioParamTimeline.cpp
index 3d6c05dcf24a9b72eaaed1bd79e80b24518537e5..100db802e113c670537752ef7e936afbad023d88 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioParamTimeline.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AudioParamTimeline.cpp
@@ -111,7 +111,7 @@ String AudioParamTimeline::EventToString(const ParamEvent& event) {
// Fall through; we should never have to print out the internal
// CancelValues event.
case ParamEvent::kLastType:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
};
@@ -974,7 +974,7 @@ float AudioParamTimeline::ValuesForFrameRangeImpl(size_t start_frame,
break;
}
case ParamEvent::kLastType:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
}
}

Powered by Google App Engine
This is Rietveld 408576698