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

Unified Diff: media/base/demuxer_perftest.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/base/demuxer_perftest.cc
diff --git a/media/base/demuxer_perftest.cc b/media/base/demuxer_perftest.cc
index 3ec8cca611bb8537024f18e61a72ec0035838f3f..ce97820ae8e578c72059bb510af085278e01e217 100644
--- a/media/base/demuxer_perftest.cc
+++ b/media/base/demuxer_perftest.cc
@@ -180,7 +180,8 @@ int StreamReader::GetNextStreamIndexToRead() {
index = i;
}
}
- CHECK_GE(index, 0) << "Couldn't find a stream to read";
+ // Couldn't find a stream to read
+ CHECK_GE(index, 0);
return index;
}

Powered by Google App Engine
This is Rietveld 408576698