| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SSL_DEFAULT_CHANNEL_ID_STORE_H_ | 5 #ifndef NET_SSL_DEFAULT_CHANNEL_ID_STORE_H_ |
| 6 #define NET_SSL_DEFAULT_CHANNEL_ID_STORE_H_ | 6 #define NET_SSL_DEFAULT_CHANNEL_ID_STORE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/scoped_vector.h" | |
| 18 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 19 #include "net/base/net_export.h" | 18 #include "net/base/net_export.h" |
| 20 #include "net/ssl/channel_id_store.h" | 19 #include "net/ssl/channel_id_store.h" |
| 21 | 20 |
| 22 namespace crypto { | 21 namespace crypto { |
| 23 class ECPrivateKey; | 22 class ECPrivateKey; |
| 24 } // namespace crypto | 23 } // namespace crypto |
| 25 | 24 |
| 26 namespace net { | 25 namespace net { |
| 27 | 26 |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 PersistentStore(); | 176 PersistentStore(); |
| 178 virtual ~PersistentStore(); | 177 virtual ~PersistentStore(); |
| 179 | 178 |
| 180 private: | 179 private: |
| 181 DISALLOW_COPY_AND_ASSIGN(PersistentStore); | 180 DISALLOW_COPY_AND_ASSIGN(PersistentStore); |
| 182 }; | 181 }; |
| 183 | 182 |
| 184 } // namespace net | 183 } // namespace net |
| 185 | 184 |
| 186 #endif // NET_SSL_DEFAULT_CHANNEL_ID_STORE_H_ | 185 #endif // NET_SSL_DEFAULT_CHANNEL_ID_STORE_H_ |
| OLD | NEW |