| 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback_forward.h" | 12 #include "base/callback_forward.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/scoped_vector.h" | 17 #include "base/memory/scoped_vector.h" |
| 17 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
| 18 #include "net/base/net_export.h" | 19 #include "net/base/net_export.h" |
| 19 #include "net/ssl/channel_id_store.h" | 20 #include "net/ssl/channel_id_store.h" |
| 20 | 21 |
| 21 namespace crypto { | 22 namespace crypto { |
| 22 class ECPrivateKey; | 23 class ECPrivateKey; |
| 23 } // namespace crypto | 24 } // namespace crypto |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 PersistentStore(); | 169 PersistentStore(); |
| 169 virtual ~PersistentStore(); | 170 virtual ~PersistentStore(); |
| 170 | 171 |
| 171 private: | 172 private: |
| 172 DISALLOW_COPY_AND_ASSIGN(PersistentStore); | 173 DISALLOW_COPY_AND_ASSIGN(PersistentStore); |
| 173 }; | 174 }; |
| 174 | 175 |
| 175 } // namespace net | 176 } // namespace net |
| 176 | 177 |
| 177 #endif // NET_SSL_DEFAULT_CHANNEL_ID_STORE_H_ | 178 #endif // NET_SSL_DEFAULT_CHANNEL_ID_STORE_H_ |
| OLD | NEW |