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

Side by Side Diff: net/cert/ct_known_logs_keys.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: Fixing compilation on non-NSS platforms 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_KEYS_H_
6 #define NET_CERT_CT_KNOWN_LOGS_KEYS_H_
wtc 2013/11/26 01:47:23 Nit: perhaps these files should be named ct_known_
Eran M. (Google) 2013/11/26 14:45:53 Done.
7
8 namespace net {
9
10 extern const char kGooglePilotLogKey[];
wtc 2013/11/26 01:47:23 Should these constants be inside namespace ct?
Eran M. (Google) 2013/11/26 14:45:53 Done.
11 extern const size_t kGooglePilotLogKeyLength;
12 extern const char kGooglePilotLogName[];
13
14 extern const char kGoogleTestLogKey[];
15 extern const size_t kGoogleTestLogKeyLength;
16 extern const char kGoogleTestLogName[];
17
18 } // namespace net
19
20 #endif // NET_CERT_CT_KNOWN_LOGS_KEYS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698