Chromium Code Reviews| Index: net/cert/ct_known_logs_keys.h |
| diff --git a/net/cert/ct_known_logs_keys.h b/net/cert/ct_known_logs_keys.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2e2b5fd9fb6b56ada6fabbcbf0336ce832b33aac |
| --- /dev/null |
| +++ b/net/cert/ct_known_logs_keys.h |
| @@ -0,0 +1,20 @@ |
| +// 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_KEYS_H_ |
| +#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.
|
| + |
| +namespace net { |
| + |
| +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.
|
| +extern const size_t kGooglePilotLogKeyLength; |
| +extern const char kGooglePilotLogName[]; |
| + |
| +extern const char kGoogleTestLogKey[]; |
| +extern const size_t kGoogleTestLogKeyLength; |
| +extern const char kGoogleTestLogName[]; |
| + |
| +} // namespace net |
| + |
| +#endif // NET_CERT_CT_KNOWN_LOGS_KEYS_H_ |