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

Unified Diff: net/cert/ct_known_logs_data.h

Issue 76443006: Certificate Transparency: Threading the CT verifier into the SSL client socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moving logs creation out of io_thread Created 7 years, 1 month 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_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..858f87033f1d70097d8fd98fc8a2e4cd19e14499
--- /dev/null
+++ b/net/cert/ct_known_logs_data.h
@@ -0,0 +1,29 @@
+// 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"
+
+namespace net {
+
+class CTLogVerifier;
+
+namespace ct {
+
+// Creates a CTLogVerifier instance for the Google Pilot CT Log
+scoped_ptr<net::CTLogVerifier> CreateGooglePilotLogVerifier();
+
+// Creates a CTLogVerifier instance for the Google "Aviator" Log
+scoped_ptr<net::CTLogVerifier> CreateGoogleAviatorLogVerifier();
+
+// Creates a CTLogVerifier instance for the Google "Rocketeer" Log
+scoped_ptr<net::CTLogVerifier> CreateGoogleRocketeerLogVerifier();
+
+} // namespace ct
+
+} // namespace net
+
+#endif // NET_CERT_CT_KNOWN_LOGS_DATA_H_

Powered by Google App Engine
This is Rietveld 408576698