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

Unified Diff: ppapi/proxy/audio_buffer_resource.cc

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: ppapi/proxy/audio_buffer_resource.cc
diff --git a/ppapi/proxy/audio_buffer_resource.cc b/ppapi/proxy/audio_buffer_resource.cc
index 1435b4cee75d26ad3d21d2aaf4f1967a3a47d81b..d74cb8a9efda2ba1a51e31a7c0a2db9ac5b5ef89 100644
--- a/ppapi/proxy/audio_buffer_resource.cc
+++ b/ppapi/proxy/audio_buffer_resource.cc
@@ -22,7 +22,8 @@ AudioBufferResource::AudioBufferResource(PP_Instance instance,
}
AudioBufferResource::~AudioBufferResource() {
- CHECK(!buffer_) << "An unused (or unrecycled) buffer is destroyed.";
+ // An unused (or unrecycled) buffer is destroyed.
+ CHECK(!buffer_);
}
thunk::PPB_AudioBuffer_API* AudioBufferResource::AsPPB_AudioBuffer_API() {

Powered by Google App Engine
This is Rietveld 408576698