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

Unified Diff: media/cast/test/sender.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/cast/test/sender.cc
diff --git a/media/cast/test/sender.cc b/media/cast/test/sender.cc
index 5d9334629fc8fd74096ee96e996ceb1793c0e56d..c5b79a8a77a6d47a6e69344abad87475c5e60767 100644
--- a/media/cast/test/sender.cc
+++ b/media/cast/test/sender.cc
@@ -77,8 +77,8 @@ void UpdateCastTransportStatus(
}
void QuitLoopOnInitializationResult(media::cast::OperationalStatus result) {
- CHECK(result == media::cast::STATUS_INITIALIZED)
- << "Cast sender uninitialized";
+ // Cast sender uninitialized
+ CHECK(result == media::cast::STATUS_INITIALIZED);
base::MessageLoop::current()->QuitWhenIdle();
}

Powered by Google App Engine
This is Rietveld 408576698