| OLD | NEW |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_TOOLS_DOMAIN_SECURITY_PRELOAD_GENERATOR_PINSET_H_ | 5 #ifndef NET_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSET_H_ |
| 6 #define NET_TOOLS_DOMAIN_SECURITY_PRELOAD_GENERATOR_PINSET_H_ | 6 #define NET_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSET_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 | 12 |
| 13 namespace net { | 13 namespace net { |
| 14 | 14 |
| 15 namespace transport_security_state { | 15 namespace transport_security_state { |
| 16 | 16 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 std::vector<std::string> static_spki_hashes_; | 48 std::vector<std::string> static_spki_hashes_; |
| 49 std::vector<std::string> bad_static_spki_hashes_; | 49 std::vector<std::string> bad_static_spki_hashes_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(Pinset); | 51 DISALLOW_COPY_AND_ASSIGN(Pinset); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace transport_security_state | 54 } // namespace transport_security_state |
| 55 | 55 |
| 56 } // namespace net | 56 } // namespace net |
| 57 | 57 |
| 58 #endif // NET_TOOLS_DOMAIN_SECURITY_PRELOAD_GENERATOR_PINSET_H_ | 58 #endif // NET_TOOLS_TRANSPORT_SECURITY_STATE_GENERATOR_PINSET_H_ |
| OLD | NEW |