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

Unified Diff: net/quic/test_tools/fake_proof_source.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/test_tools/crypto_test_utils.cc ('k') | net/quic/test_tools/quic_stream_sequencer_buffer_peer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/fake_proof_source.cc
diff --git a/net/quic/test_tools/fake_proof_source.cc b/net/quic/test_tools/fake_proof_source.cc
index e4360195b8393b36c0e33fc24417ce7df8606c14..8507b8796dda24856fc9eb1ea47d5389ff2b175a 100644
--- a/net/quic/test_tools/fake_proof_source.cc
+++ b/net/quic/test_tools/fake_proof_source.cc
@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "net/quic/platform/api/quic_logging.h"
#include "net/quic/test_tools/fake_proof_source.h"
#include "net/quic/test_tools/crypto_test_utils.h"
@@ -51,7 +50,7 @@
const QuicTagVector& connection_options,
QuicReferenceCountedPointer<ProofSource::Chain>* out_chain,
QuicCryptoProof* out_proof) {
- QUIC_LOG(WARNING) << "Synchronous GetProof called";
+ LOG(WARNING) << "Synchronous GetProof called";
return delegate_->GetProof(server_address, hostname, server_config,
quic_version, chlo_hash, connection_options,
out_chain, out_proof);
@@ -75,7 +74,7 @@
return;
}
- QUIC_LOG(WARNING) << "Asynchronous GetProof called";
+ LOG(WARNING) << "Asynchronous GetProof called";
params_.push_back(Params{server_address, hostname, server_config,
quic_version, chlo_hash.as_string(),
connection_options, std::move(callback)});
« no previous file with comments | « net/quic/test_tools/crypto_test_utils.cc ('k') | net/quic/test_tools/quic_stream_sequencer_buffer_peer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698