Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: net/socket/tcp_client_socket_win.h

Issue 144009: Move socket related files from net/base to net/socket. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/socket/tcp_client_socket_unittest.cc ('k') | net/socket/tcp_client_socket_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_BASE_TCP_CLIENT_SOCKET_WIN_H_ 5 #ifndef NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_
6 #define NET_BASE_TCP_CLIENT_SOCKET_WIN_H_ 6 #define NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_
7 7
8 #include <ws2tcpip.h> 8 #include <ws2tcpip.h>
9 9
10 #include "base/object_watcher.h" 10 #include "base/object_watcher.h"
11 #include "net/base/address_list.h" 11 #include "net/base/address_list.h"
12 #include "net/base/client_socket.h"
13 #include "net/base/completion_callback.h" 12 #include "net/base/completion_callback.h"
13 #include "net/socket/client_socket.h"
14 14
15 namespace net { 15 namespace net {
16 16
17 class TCPClientSocketWin : public ClientSocket { 17 class TCPClientSocketWin : public ClientSocket {
18 public: 18 public:
19 // The IP address(es) and port number to connect to. The TCP socket will try 19 // The IP address(es) and port number to connect to. The TCP socket will try
20 // each IP address in the list until it succeeds in establishing a 20 // each IP address in the list until it succeeds in establishing a
21 // connection. 21 // connection.
22 explicit TCPClientSocketWin(const AddressList& addresses); 22 explicit TCPClientSocketWin(const AddressList& addresses);
23 23
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 CompletionCallback* read_callback_; 67 CompletionCallback* read_callback_;
68 68
69 // External callback; called when write is complete. 69 // External callback; called when write is complete.
70 CompletionCallback* write_callback_; 70 CompletionCallback* write_callback_;
71 71
72 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketWin); 72 DISALLOW_COPY_AND_ASSIGN(TCPClientSocketWin);
73 }; 73 };
74 74
75 } // namespace net 75 } // namespace net
76 76
77 #endif // NET_BASE_TCP_CLIENT_SOCKET_WIN_H_ 77 #endif // NET_SOCKET_TCP_CLIENT_SOCKET_WIN_H_
OLDNEW
« no previous file with comments | « net/socket/tcp_client_socket_unittest.cc ('k') | net/socket/tcp_client_socket_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698