| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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_CLIENT_SOCKET_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_H_ |
| 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "net/base/auth.h" |
| 11 #include "net/base/completion_callback.h" | 12 #include "net/base/completion_callback.h" |
| 12 #include "net/base/load_flags.h" | 13 #include "net/base/load_flags.h" |
| 13 #include "net/base/net_errors.h" | 14 #include "net/base/net_errors.h" |
| 14 #include "net/socket/client_socket.h" | 15 #include "net/socket/client_socket.h" |
| 15 | 16 |
| 16 namespace net { | 17 namespace net { |
| 17 | 18 |
| 18 class SSLCertRequestInfo; | 19 class SSLCertRequestInfo; |
| 19 class SSLHostInfo; | 20 class SSLHostInfo; |
| 20 class SSLInfo; | 21 class SSLInfo; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 private: | 104 private: |
| 104 // True if NPN was responded to, independent of selecting SPDY or HTTP. | 105 // True if NPN was responded to, independent of selecting SPDY or HTTP. |
| 105 bool was_npn_negotiated_; | 106 bool was_npn_negotiated_; |
| 106 // True if NPN successfully negotiated SPDY. | 107 // True if NPN successfully negotiated SPDY. |
| 107 bool was_spdy_negotiated_; | 108 bool was_spdy_negotiated_; |
| 108 }; | 109 }; |
| 109 | 110 |
| 110 } // namespace net | 111 } // namespace net |
| 111 | 112 |
| 112 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_H_ | 113 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_H_ |
| OLD | NEW |