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

Side by Side Diff: jingle/glue/proxy_resolving_client_socket.h

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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 | « jingle/glue/chrome_async_socket_unittest.cc ('k') | jingle/glue/xmpp_client_socket_factory.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This StreamSocket implementation wraps a ClientSocketHandle that is created 5 // This StreamSocket implementation wraps a ClientSocketHandle that is created
6 // from the client socket pool after resolving proxies. 6 // from the client socket pool after resolving proxies.
7 7
8 #ifndef JINGLE_GLUE_PROXY_RESOLVING_CLIENT_SOCKET_H_ 8 #ifndef JINGLE_GLUE_PROXY_RESOLVING_CLIENT_SOCKET_H_
9 #define JINGLE_GLUE_PROXY_RESOLVING_CLIENT_SOCKET_H_ 9 #define JINGLE_GLUE_PROXY_RESOLVING_CLIENT_SOCKET_H_
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "googleurl/src/gurl.h" 15 #include "googleurl/src/gurl.h"
16 #include "net/base/completion_callback.h" 16 #include "net/base/completion_callback.h"
17 #include "net/base/host_port_pair.h" 17 #include "net/base/host_port_pair.h"
18 #include "net/base/net_errors.h" 18 #include "net/base/net_errors.h"
19 #include "net/base/net_log.h" 19 #include "net/base/net_log.h"
20 #include "net/base/ssl_config_service.h"
21 #include "net/proxy/proxy_info.h" 20 #include "net/proxy/proxy_info.h"
22 #include "net/proxy/proxy_service.h" 21 #include "net/proxy/proxy_service.h"
23 #include "net/socket/stream_socket.h" 22 #include "net/socket/stream_socket.h"
23 #include "net/ssl/ssl_config_service.h"
24 24
25 namespace net { 25 namespace net {
26 class ClientSocketFactory; 26 class ClientSocketFactory;
27 class ClientSocketHandle; 27 class ClientSocketHandle;
28 class HttpNetworkSession; 28 class HttpNetworkSession;
29 class URLRequestContextGetter; 29 class URLRequestContextGetter;
30 } // namespace net 30 } // namespace net
31 31
32 // TODO(sanjeevr): Move this to net/ 32 // TODO(sanjeevr): Move this to net/
33 namespace jingle_glue { 33 namespace jingle_glue {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 net::BoundNetLog bound_net_log_; 99 net::BoundNetLog bound_net_log_;
100 base::WeakPtrFactory<ProxyResolvingClientSocket> weak_factory_; 100 base::WeakPtrFactory<ProxyResolvingClientSocket> weak_factory_;
101 101
102 // The callback passed to Connect(). 102 // The callback passed to Connect().
103 net::CompletionCallback user_connect_callback_; 103 net::CompletionCallback user_connect_callback_;
104 }; 104 };
105 105
106 } // namespace jingle_glue 106 } // namespace jingle_glue
107 107
108 #endif // JINGLE_GLUE_PROXY_RESOLVING_CLIENT_SOCKET_H_ 108 #endif // JINGLE_GLUE_PROXY_RESOLVING_CLIENT_SOCKET_H_
OLDNEW
« no previous file with comments | « jingle/glue/chrome_async_socket_unittest.cc ('k') | jingle/glue/xmpp_client_socket_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698