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

Unified Diff: components/certificate_transparency/tree_state_tracker.h

Issue 2650803004: Wire NetLog into the TreeStateTracker (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
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..52757e928cefe7ba9371d18a4b6f799b90c985bd 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,9 @@ 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* raw_net_log);
eroman 2017/01/25 21:23:08 net_log That matches the .cc file, and is the idi
Eran Messeri 2017/01/26 15:08:40 My bad, this was a left-over from a previous versi
~TreeStateTracker() override;
// net::ct::CTVerifier::Observer implementation.

Powered by Google App Engine
This is Rietveld 408576698