Index: net/cert/ct_known_logs_data.h |
diff --git a/net/cert/ct_known_logs_data.h b/net/cert/ct_known_logs_data.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d86447329ef1b218953349839d0e0e70c4484e4b |
--- /dev/null |
+++ b/net/cert/ct_known_logs_data.h |
@@ -0,0 +1,30 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef NET_CERT_CT_KNOWN_LOGS_DATA_H_ |
+#define NET_CERT_CT_KNOWN_LOGS_DATA_H_ |
+ |
+#include "base/memory/scoped_ptr.h" |
+#include "net/base/net_export.h" |
+ |
+namespace net { |
+ |
+class CTLogVerifier; |
+ |
+namespace ct { |
+ |
+// Creates a CTLogVerifier instance for the Google Pilot CT Log |
+NET_EXPORT scoped_ptr<net::CTLogVerifier> CreateGooglePilotLogVerifier(); |
+ |
+// Creates a CTLogVerifier instance for the Google "Aviator" Log |
+NET_EXPORT scoped_ptr<net::CTLogVerifier> CreateGoogleAviatorLogVerifier(); |
+ |
+// Creates a CTLogVerifier instance for the Google "Rocketeer" Log |
+NET_EXPORT scoped_ptr<net::CTLogVerifier> CreateGoogleRocketeerLogVerifier(); |
wtc
2013/11/27 20:00:49
1. Remove the net:: prefixes in this file.
2. Nit
Eran M. (Google)
2013/11/27 23:01:42
Done and Done.
|
+ |
+} // namespace ct |
+ |
+} // namespace net |
+ |
+#endif // NET_CERT_CT_KNOWN_LOGS_DATA_H_ |