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

Unified Diff: net/http/transport_security_state_structs.h

Issue 2660793002: Add transport security state generator tests. (Closed)
Patch Set: export method for tests Created 3 years, 10 months 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/http/transport_security_state_structs.h
diff --git a/net/http/transport_security_state_structs.h b/net/http/transport_security_state_structs.h
new file mode 100644
index 0000000000000000000000000000000000000000..53e3d6a1c1dd7e268e85481ee2514005c590c644
--- /dev/null
+++ b/net/http/transport_security_state_structs.h
@@ -0,0 +1,18 @@
+// Copyright (c) 2017 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_HTTP_TRANSPORT_SECURITY_STATE_STRUCTS_H_
+#define NET_HTTP_TRANSPORT_SECURITY_STATE_STRUCTS_H_
+
+namespace net {
+
+struct Pinset {
+ const char* const* const accepted_pins;
+ const char* const* const rejected_pins;
+ const char* const report_uri;
+};
+
+} // namespace net
+
+#endif // NET_HTTP_TRANSPORT_SECURITY_STATE_STRUCTS_H_

Powered by Google App Engine
This is Rietveld 408576698