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

Unified Diff: net/quic/chromium/crypto/proof_verifier_chromium.h

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 3 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
Index: net/quic/chromium/crypto/proof_verifier_chromium.h
diff --git a/net/quic/chromium/crypto/proof_verifier_chromium.h b/net/quic/chromium/crypto/proof_verifier_chromium.h
index bc4acce155e5e31353b67ed3d53a2f0978b885aa..88b80f77a3e6f406db6a3f38af054d8408930052 100644
--- a/net/quic/chromium/crypto/proof_verifier_chromium.h
+++ b/net/quic/chromium/crypto/proof_verifier_chromium.h
@@ -54,11 +54,12 @@ class NET_EXPORT_PRIVATE ProofVerifyDetailsChromium
// ProofVerifierChromium needs in order to log correctly.
struct ProofVerifyContextChromium : public ProofVerifyContext {
public:
- ProofVerifyContextChromium(int cert_verify_flags, const BoundNetLog& net_log)
+ ProofVerifyContextChromium(int cert_verify_flags,
+ const NetLogWithSource& net_log)
: cert_verify_flags(cert_verify_flags), net_log(net_log) {}
int cert_verify_flags;
- BoundNetLog net_log;
+ NetLogWithSource net_log;
};
// ProofVerifierChromium implements the QUIC ProofVerifier interface. It is

Powered by Google App Engine
This is Rietveld 408576698