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

Unified Diff: net/quic/core/quic_client_promised_info.cc

Issue 2629723003: Revert of Add quic_logging (Closed)
Patch Set: Created 3 years, 11 months 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
« no previous file with comments | « net/quic/core/quic_bandwidth.cc ('k') | net/quic/core/quic_client_promised_info_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_client_promised_info.cc
diff --git a/net/quic/core/quic_client_promised_info.cc b/net/quic/core/quic_client_promised_info.cc
index a08ff456065c7dcbbbd2397737f1b80a2fdd711f..186b192c5f2658ef8511bf859879de21ff315473 100644
--- a/net/quic/core/quic_client_promised_info.cc
+++ b/net/quic/core/quic_client_promised_info.cc
@@ -4,8 +4,8 @@
#include "net/quic/core/quic_client_promised_info.h"
+#include "base/logging.h"
#include "net/quic/core/spdy_utils.h"
-#include "net/quic/platform/api/quic_logging.h"
using net::SpdyHeaderBlock;
using net::kPushPromiseTimeoutSecs;
@@ -24,7 +24,7 @@
QuicClientPromisedInfo::~QuicClientPromisedInfo() {}
void QuicClientPromisedInfo::CleanupAlarm::OnAlarm() {
- QUIC_DVLOG(1) << "self GC alarm for stream " << promised_->id_;
+ DVLOG(1) << "self GC alarm for stream " << promised_->id_;
promised_->session()->OnPushStreamTimedOut(promised_->id_);
promised_->Reset(QUIC_PUSH_STREAM_TIMED_OUT);
}
@@ -43,14 +43,13 @@
SpdyHeaderBlock::const_iterator it = headers.find(":method");
DCHECK(it != headers.end());
if (!(it->second == "GET" || it->second == "HEAD")) {
- QUIC_DVLOG(1) << "Promise for stream " << id_ << " has invalid method "
- << it->second;
+ DVLOG(1) << "Promise for stream " << id_ << " has invalid method "
+ << it->second;
Reset(QUIC_INVALID_PROMISE_METHOD);
return;
}
if (!SpdyUtils::UrlIsValid(headers)) {
- QUIC_DVLOG(1) << "Promise for stream " << id_ << " has invalid URL "
- << url_;
+ DVLOG(1) << "Promise for stream " << id_ << " has invalid URL " << url_;
Reset(QUIC_INVALID_PROMISE_URL);
return;
}
« no previous file with comments | « net/quic/core/quic_bandwidth.cc ('k') | net/quic/core/quic_client_promised_info_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698