Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 #include "net/base/net_export.h" | |
| 10 | |
| 11 namespace net { | |
| 12 | |
| 13 class CTLogVerifier; | |
| 14 | |
| 15 namespace ct { | |
| 16 | |
| 17 // Creates a CTLogVerifier instance for the Google Pilot CT Log | |
| 18 NET_EXPORT scoped_ptr<net::CTLogVerifier> CreateGooglePilotLogVerifier(); | |
| 19 | |
| 20 // Creates a CTLogVerifier instance for the Google "Aviator" Log | |
| 21 NET_EXPORT scoped_ptr<net::CTLogVerifier> CreateGoogleAviatorLogVerifier(); | |
| 22 | |
| 23 // Creates a CTLogVerifier instance for the Google "Rocketeer" Log | |
| 24 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.
| |
| 25 | |
| 26 } // namespace ct | |
| 27 | |
| 28 } // namespace net | |
| 29 | |
| 30 #endif // NET_CERT_CT_KNOWN_LOGS_DATA_H_ | |
| OLD | NEW |