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

Side by Side 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 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_CERT_CT_KNOWN_LOGS_DATA_H_
6 #define NET_CERT_CT_KNOWN_LOGS_DATA_H_
7
8 #include "base/memory/scoped_ptr.h"
9
10 namespace net {
11
12 class CTLogVerifier;
13
14 namespace ct {
15
16 // Creates a CTLogVerifier instance for the Google Pilot CT Log
17 scoped_ptr<net::CTLogVerifier> CreateGooglePilotLogVerifier();
18
19 // Creates a CTLogVerifier instance for the Google "Aviator" Log
20 scoped_ptr<net::CTLogVerifier> CreateGoogleAviatorLogVerifier();
21
22 // Creates a CTLogVerifier instance for the Google "Rocketeer" Log
23 scoped_ptr<net::CTLogVerifier> CreateGoogleRocketeerLogVerifier();
24
25 } // namespace ct
26
27 } // namespace net
28
29 #endif // NET_CERT_CT_KNOWN_LOGS_DATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698