Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 REMOTING_JINGLE_GLUE_SSL_SOCKET_ADAPTER_H_ | 5 #ifndef REMOTING_JINGLE_GLUE_SSL_SOCKET_ADAPTER_H_ |
| 6 #define REMOTING_JINGLE_GLUE_SSL_SOCKET_ADAPTER_H_ | 6 #define REMOTING_JINGLE_GLUE_SSL_SOCKET_ADAPTER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | |
|
wtc
2010/11/12 00:12:55
Remove this.
Ryan Hamilton
2010/11/12 00:47:30
Done.
| |
| 8 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 9 #include "net/base/completion_callback.h" | 10 #include "net/base/completion_callback.h" |
| 10 #include "net/base/io_buffer.h" | 11 #include "net/base/io_buffer.h" |
| 11 #include "net/base/net_errors.h" | 12 #include "net/base/net_errors.h" |
| 12 #include "net/base/net_log.h" | 13 #include "net/base/net_log.h" |
| 13 #include "net/socket/client_socket.h" | 14 #include "net/socket/client_socket.h" |
| 14 #include "net/socket/ssl_client_socket.h" | 15 #include "net/socket/ssl_client_socket.h" |
| 15 #include "third_party/libjingle/source/talk/base/asyncsocket.h" | 16 #include "third_party/libjingle/source/talk/base/asyncsocket.h" |
| 16 #include "third_party/libjingle/source/talk/base/ssladapter.h" | 17 #include "third_party/libjingle/source/talk/base/ssladapter.h" |
| 17 | 18 |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 IOState write_state_; | 138 IOState write_state_; |
| 138 scoped_refptr<net::IOBuffer> transport_buf_; | 139 scoped_refptr<net::IOBuffer> transport_buf_; |
| 139 int data_transferred_; | 140 int data_transferred_; |
| 140 | 141 |
| 141 DISALLOW_COPY_AND_ASSIGN(SSLSocketAdapter); | 142 DISALLOW_COPY_AND_ASSIGN(SSLSocketAdapter); |
| 142 }; | 143 }; |
| 143 | 144 |
| 144 } // namespace remoting | 145 } // namespace remoting |
| 145 | 146 |
| 146 #endif // REMOTING_JINGLE_GLUE_SSL_SOCKET_ADAPTER_H_ | 147 #endif // REMOTING_JINGLE_GLUE_SSL_SOCKET_ADAPTER_H_ |
| OLD | NEW |