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

Unified Diff: net/http2/hpack/decoder/hpack_entry_collector.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: net/http2/hpack/decoder/hpack_entry_collector.cc
diff --git a/net/http2/hpack/decoder/hpack_entry_collector.cc b/net/http2/hpack/decoder/hpack_entry_collector.cc
index ea4feb6f8475a2307e6142b5c2d0771ea61afd46..646e232ad6db035f51c386eb6c9f898e8d6fa737 100644
--- a/net/http2/hpack/decoder/hpack_entry_collector.cc
+++ b/net/http2/hpack/decoder/hpack_entry_collector.cc
@@ -229,7 +229,7 @@ void HpackEntryCollector::AppendToHpackBlockBuilder(
hbb->AppendNameIndexAndLiteralValue(header_type_, index_,
value_.huffman_encoded, value_.s);
} else {
- CHECK(name_.HasEnded()) << *this;
+ CHECK(name_.HasEnded());
hbb->AppendLiteralNameAndValue(header_type_, name_.huffman_encoded,
name_.s, value_.huffman_encoded,
value_.s);

Powered by Google App Engine
This is Rietveld 408576698