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

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

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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/DeferredTaskHandler.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp b/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
index 10a3d8ec2ed5418826674bf613ebc3e432f12bff..9c652f3faf68fd007b2ff152581c21a4362d6e3c 100644
--- a/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/DeferredTaskHandler.cpp
@@ -59,8 +59,9 @@ void DeferredTaskHandler::offlineLock() {
// CHECK is here to make sure to explicitly crash if this is called from
// other than the offline render thread, which is considered as the audio
// thread in OfflineAudioContext.
- CHECK(isAudioThread()) << "DeferredTaskHandler::offlineLock() must be called "
- "within the offline audio thread.";
+ // DeferredTaskHandler::offlineLock() must be called within the offline audio
+ // thread.
+ CHECK(isAudioThread());
m_contextGraphMutex.lock();
}

Powered by Google App Engine
This is Rietveld 408576698