Chromium Code Reviews| 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() {} |