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

Unified Diff: net/cert/ct_ev_whitelist.h

Issue 782333002: Certificate Transparency: Adding finch and NetLog logging for EV certs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo in log_view_painter, update params description in netlog Created 6 years 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/cert/ct_ev_whitelist.h
diff --git a/net/cert/ct_ev_whitelist.h b/net/cert/ct_ev_whitelist.h
index a12b9d52975a21a1e7fdc4439264e4a2e3838ef6..deeb5aebe1ffc48b7200d7389bf3e41e743cdcdf 100644
--- a/net/cert/ct_ev_whitelist.h
+++ b/net/cert/ct_ev_whitelist.h
@@ -8,6 +8,7 @@
#include <string>
#include "base/memory/ref_counted.h"
+#include "base/version.h"
Ryan Sleevi 2014/12/16 21:35:01 You don't need to include this; you can forward de
Eran Messeri 2014/12/17 16:19:31 Done.
#include "net/base/net_export.h"
namespace net {
@@ -26,6 +27,9 @@ class NET_EXPORT EVCertsWhitelist
// false otherwise.
virtual bool IsValid() const = 0;
+ // Returns the version of the whitelist in use
+ virtual base::Version Version() const = 0;
+
protected:
virtual ~EVCertsWhitelist() {}

Powered by Google App Engine
This is Rietveld 408576698