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

Unified Diff: ppapi/proxy/video_frame_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/video_frame_resource.cc
diff --git a/ppapi/proxy/video_frame_resource.cc b/ppapi/proxy/video_frame_resource.cc
index 941471256eebe5750ffabc9807deb01c9cde41a2..8d7aed6e59d71f2f783154c677798dca381206ea 100644
--- a/ppapi/proxy/video_frame_resource.cc
+++ b/ppapi/proxy/video_frame_resource.cc
@@ -21,7 +21,8 @@ VideoFrameResource::VideoFrameResource(PP_Instance instance,
}
VideoFrameResource::~VideoFrameResource() {
- CHECK(!buffer_) << "An unused (or unrecycled) frame is destroyed.";
+ // An unused (or unrecycled) frame is destroyed.
+ CHECK(!buffer_);
}
thunk::PPB_VideoFrame_API* VideoFrameResource::AsPPB_VideoFrame_API() {

Powered by Google App Engine
This is Rietveld 408576698