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

Unified Diff: components/certificate_transparency/tree_state_tracker.h

Issue 2650803004: Wire NetLog into the TreeStateTracker (Closed)
Patch Set: Looking for entry first 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
Index: components/certificate_transparency/tree_state_tracker.h
diff --git a/components/certificate_transparency/tree_state_tracker.h b/components/certificate_transparency/tree_state_tracker.h
index 7523978f34e86b73996ba91ae88d1a70a29b4119..83d82c0a304ae03f860aff882c752b0b4593b025 100644
--- a/components/certificate_transparency/tree_state_tracker.h
+++ b/components/certificate_transparency/tree_state_tracker.h
@@ -15,6 +15,7 @@
#include "net/cert/sth_observer.h"
namespace net {
+class NetLog;
class CTLogVerifier;
class X509Certificate;
@@ -43,8 +44,8 @@ class TreeStateTracker : public net::CTVerifier::Observer,
// is based on the assumption that the list of recognized logs does not change
// during the object's life time.
// Observed STHs from logs not in this list will be simply ignored.
- explicit TreeStateTracker(
- std::vector<scoped_refptr<const net::CTLogVerifier>> ct_logs);
+ TreeStateTracker(std::vector<scoped_refptr<const net::CTLogVerifier>> ct_logs,
+ net::NetLog* net_log);
~TreeStateTracker() override;
// net::ct::CTVerifier::Observer implementation.

Powered by Google App Engine
This is Rietveld 408576698