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

Unified Diff: media/renderers/audio_renderer_impl_unittest.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: media/renderers/audio_renderer_impl_unittest.cc
diff --git a/media/renderers/audio_renderer_impl_unittest.cc b/media/renderers/audio_renderer_impl_unittest.cc
index b67788937980f81c26a5bbb9f2069170838140ae..3cca06cdac41e76c2f7f941fdd25aa78400a93e1 100644
--- a/media/renderers/audio_renderer_impl_unittest.cc
+++ b/media/renderers/audio_renderer_impl_unittest.cc
@@ -415,7 +415,8 @@ class AudioRendererImplTest : public ::testing::Test, public RendererClient {
return;
}
- CHECK(decode_cb_.is_null()) << "Overlapping decodes are not permitted";
+ // Overlapping decodes are not permitted
+ CHECK(decode_cb_.is_null());
decode_cb_ = decode_cb;
// Wake up WaitForPendingRead() if needed.

Powered by Google App Engine
This is Rietveld 408576698