| 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)});
|
|
|