| 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_TCP_SOCKET_POSIX_H_ | 5 #ifndef NET_SOCKET_TCP_SOCKET_POSIX_H_ |
| 6 #define NET_SOCKET_TCP_SOCKET_POSIX_H_ | 6 #define NET_SOCKET_TCP_SOCKET_POSIX_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 15 #include "net/base/address_family.h" | 15 #include "net/base/address_family.h" |
| 16 #include "net/base/completion_callback.h" | 16 #include "net/base/completion_callback.h" |
| 17 #include "net/base/net_export.h" | 17 #include "net/base/net_export.h" |
| 18 #include "net/base/socket_performance_watcher.h" | |
| 19 #include "net/log/net_log.h" | 18 #include "net/log/net_log.h" |
| 19 #include "net/socket/socket_performance_watcher.h" |
| 20 | 20 |
| 21 namespace base { | 21 namespace base { |
| 22 class TickClock; | 22 class TickClock; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace net { | 25 namespace net { |
| 26 | 26 |
| 27 class AddressList; | 27 class AddressList; |
| 28 class IOBuffer; | 28 class IOBuffer; |
| 29 class IPEndPoint; | 29 class IPEndPoint; |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 bool logging_multiple_connect_attempts_; | 246 bool logging_multiple_connect_attempts_; |
| 247 | 247 |
| 248 BoundNetLog net_log_; | 248 BoundNetLog net_log_; |
| 249 | 249 |
| 250 DISALLOW_COPY_AND_ASSIGN(TCPSocketPosix); | 250 DISALLOW_COPY_AND_ASSIGN(TCPSocketPosix); |
| 251 }; | 251 }; |
| 252 | 252 |
| 253 } // namespace net | 253 } // namespace net |
| 254 | 254 |
| 255 #endif // NET_SOCKET_TCP_SOCKET_POSIX_H_ | 255 #endif // NET_SOCKET_TCP_SOCKET_POSIX_H_ |
| OLD | NEW |