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

Unified Diff: remoting/test/cyclic_frame_generator.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: remoting/test/cyclic_frame_generator.cc
diff --git a/remoting/test/cyclic_frame_generator.cc b/remoting/test/cyclic_frame_generator.cc
index ef59810efc3f36ae947fa653cf5c37b76190e611..6e5904b6267ce0a50234e44b3f592adb7aa1d478 100644
--- a/remoting/test/cyclic_frame_generator.cc
+++ b/remoting/test/cyclic_frame_generator.cc
@@ -33,8 +33,8 @@ CyclicFrameGenerator::CyclicFrameGenerator(
CHECK(!reference_frames_.empty());
screen_size_ = reference_frames_[0]->size();
for (const auto& frame : reference_frames_) {
- CHECK(screen_size_.equals(frame->size()))
- << "All reference frames should have the same size.";
+ // All reference frames should have the same size.
+ CHECK(screen_size_.equals(frame->size()));
}
}

Powered by Google App Engine
This is Rietveld 408576698