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

Unified Diff: net/quic/chromium/crypto/proof_source_chromium.cc

Issue 2679783003: Deprecate FLAGS_quic_reloadable_flag_enable_async_get_proof (Closed)
Patch Set: Address gredner's comments. Created 3 years, 10 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/chromium/crypto/proof_source_chromium.h ('k') | net/quic/chromium/crypto/proof_test_chromium.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/chromium/crypto/proof_source_chromium.cc
diff --git a/net/quic/chromium/crypto/proof_source_chromium.cc b/net/quic/chromium/crypto/proof_source_chromium.cc
index dd8ce1f8881bf3cd71604337b878b808efda0c17..fb14ba027bd23fbc5db08d8991aef74a11367622 100644
--- a/net/quic/chromium/crypto/proof_source_chromium.cc
+++ b/net/quic/chromium/crypto/proof_source_chromium.cc
@@ -76,7 +76,7 @@ bool ProofSourceChromium::Initialize(const base::FilePath& cert_path,
return true;
}
-bool ProofSourceChromium::GetProof(
+bool ProofSourceChromium::GetProofInner(
const QuicSocketAddress& server_addr,
const string& hostname,
const string& server_config,
@@ -146,8 +146,10 @@ void ProofSourceChromium::GetProof(const QuicSocketAddress& server_addr,
string signature;
string leaf_cert_sct;
QuicCryptoProof out_proof;
- const bool ok = GetProof(server_addr, hostname, server_config, quic_version,
- chlo_hash, connection_options, &chain, &out_proof);
+
+ const bool ok =
+ GetProofInner(server_addr, hostname, server_config, quic_version,
+ chlo_hash, connection_options, &chain, &out_proof);
callback->Run(ok, chain, out_proof, nullptr /* details */);
}
« no previous file with comments | « net/quic/chromium/crypto/proof_source_chromium.h ('k') | net/quic/chromium/crypto/proof_test_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698