| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_SOCKS_CLIENT_SOCKET_H_ | 5 #ifndef NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ |
| 6 #define NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ | 6 #define NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "googleurl/src/gurl.h" | |
| 16 #include "net/base/address_list.h" | 15 #include "net/base/address_list.h" |
| 17 #include "net/base/completion_callback.h" | 16 #include "net/base/completion_callback.h" |
| 18 #include "net/base/host_resolver.h" | 17 #include "net/base/host_resolver.h" |
| 19 #include "net/base/net_errors.h" | 18 #include "net/base/net_errors.h" |
| 20 #include "net/base/net_log.h" | 19 #include "net/base/net_log.h" |
| 21 #include "net/base/single_request_host_resolver.h" | 20 #include "net/base/single_request_host_resolver.h" |
| 22 #include "net/socket/stream_socket.h" | 21 #include "net/socket/stream_socket.h" |
| 23 | 22 |
| 24 namespace net { | 23 namespace net { |
| 25 | 24 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 HostResolver::RequestInfo host_request_info_; | 131 HostResolver::RequestInfo host_request_info_; |
| 133 | 132 |
| 134 BoundNetLog net_log_; | 133 BoundNetLog net_log_; |
| 135 | 134 |
| 136 DISALLOW_COPY_AND_ASSIGN(SOCKSClientSocket); | 135 DISALLOW_COPY_AND_ASSIGN(SOCKSClientSocket); |
| 137 }; | 136 }; |
| 138 | 137 |
| 139 } // namespace net | 138 } // namespace net |
| 140 | 139 |
| 141 #endif // NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ | 140 #endif // NET_SOCKET_SOCKS_CLIENT_SOCKET_H_ |
| OLD | NEW |