OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SOCKET_SSL_SESSION_CACHE_OPENSSL_H | 5 #ifndef NET_SOCKET_SSL_SESSION_CACHE_OPENSSL_H |
6 #define NET_SOCKET_SSL_SESSION_CACHE_OPENSSL_H | 6 #define NET_SOCKET_SSL_SESSION_CACHE_OPENSSL_H |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/callback_forward.h" | |
12 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
13 | 12 |
14 // Avoid including OpenSSL headers here. | 13 // Avoid including OpenSSL headers here. |
15 typedef struct ssl_ctx_st SSL_CTX; | 14 typedef struct ssl_ctx_st SSL_CTX; |
16 typedef struct ssl_st SSL; | 15 typedef struct ssl_st SSL; |
17 | 16 |
18 namespace net { | 17 namespace net { |
19 | 18 |
20 class SSLSessionCacheOpenSSLImpl; | 19 class SSLSessionCacheOpenSSLImpl; |
21 | 20 |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 135 |
137 private: | 136 private: |
138 DISALLOW_COPY_AND_ASSIGN(SSLSessionCacheOpenSSL); | 137 DISALLOW_COPY_AND_ASSIGN(SSLSessionCacheOpenSSL); |
139 | 138 |
140 SSLSessionCacheOpenSSLImpl* impl_; | 139 SSLSessionCacheOpenSSLImpl* impl_; |
141 }; | 140 }; |
142 | 141 |
143 } // namespace net | 142 } // namespace net |
144 | 143 |
145 #endif // NET_SOCKET_SSL_SESSION_CACHE_OPENSSL_H | 144 #endif // NET_SOCKET_SSL_SESSION_CACHE_OPENSSL_H |
OLD | NEW |