| OLD | NEW |
| (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_SOURCE_H_ |
| 6 #define NET_HTTP_TRANSPORT_SECURITY_STATE_SOURCE_H_ |
| 7 |
| 8 namespace net { |
| 9 |
| 10 struct TransportSecurityStateSource { |
| 11 struct Pinset { |
| 12 const char* const* const accepted_pins; |
| 13 const char* const* const rejected_pins; |
| 14 const char* const report_uri; |
| 15 }; |
| 16 |
| 17 const uint8_t* huffman_tree; |
| 18 size_t huffman_tree_size; |
| 19 const uint8_t* preloaded_data; |
| 20 size_t preloaded_bits; |
| 21 size_t root_position; |
| 22 const char* const* expect_ct_report_uris; |
| 23 const char* const* expect_staple_report_uris; |
| 24 const Pinset* pinsets; |
| 25 size_t pinsets_count; |
| 26 }; |
| 27 |
| 28 } // namespace net |
| 29 |
| 30 #endif // NET_HTTP_TRANSPORT_SECURITY_STATE_SOURCE_H_ |
| OLD | NEW |