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