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

Side by Side Diff: net/socket/client_socket_factory.cc

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/client_socket_factory.h ('k') | net/socket/client_socket_handle.h » ('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-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #include "net/base/client_socket_factory.h" 5 #include "net/socket/client_socket_factory.h"
6 6
7 #include "base/singleton.h" 7 #include "base/singleton.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #if defined(OS_WIN) 9 #if defined(OS_WIN)
10 #include "net/base/ssl_client_socket_win.h" 10 #include "net/socket/ssl_client_socket_win.h"
11 #elif defined(OS_LINUX) 11 #elif defined(OS_LINUX)
12 #include "net/base/ssl_client_socket_nss.h" 12 #include "net/socket/ssl_client_socket_nss.h"
13 #elif defined(OS_MACOSX) 13 #elif defined(OS_MACOSX)
14 #include "net/base/ssl_client_socket_mac.h" 14 #include "net/socket/ssl_client_socket_mac.h"
15 #endif 15 #endif
16 #include "net/base/tcp_client_socket.h" 16 #include "net/socket/tcp_client_socket.h"
17 17
18 namespace net { 18 namespace net {
19 19
20 class DefaultClientSocketFactory : public ClientSocketFactory { 20 class DefaultClientSocketFactory : public ClientSocketFactory {
21 public: 21 public:
22 virtual ClientSocket* CreateTCPClientSocket( 22 virtual ClientSocket* CreateTCPClientSocket(
23 const AddressList& addresses) { 23 const AddressList& addresses) {
24 return new TCPClientSocket(addresses); 24 return new TCPClientSocket(addresses);
25 } 25 }
26 26
(...skipping 13 matching lines...) Expand all
40 #endif 40 #endif
41 } 41 }
42 }; 42 };
43 43
44 // static 44 // static
45 ClientSocketFactory* ClientSocketFactory::GetDefaultFactory() { 45 ClientSocketFactory* ClientSocketFactory::GetDefaultFactory() {
46 return Singleton<DefaultClientSocketFactory>::get(); 46 return Singleton<DefaultClientSocketFactory>::get();
47 } 47 }
48 48
49 } // namespace net 49 } // namespace net
OLDNEW
« no previous file with comments | « net/socket/client_socket_factory.h ('k') | net/socket/client_socket_handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698