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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2017 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_HTTP_TRANSPORT_SECURITY_STATE_STRUCTS_H_
6 #define NET_HTTP_TRANSPORT_SECURITY_STATE_STRUCTS_H_
7
8 namespace net {
9
10 struct Pinset {
11 const char* const* const accepted_pins;
12 const char* const* const rejected_pins;
13 const char* const report_uri;
14 };
15
16 } // namespace net
17
18 #endif // NET_HTTP_TRANSPORT_SECURITY_STATE_STRUCTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698