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_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_ | |
| OLD | NEW |