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

Unified 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, 1 month 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698