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

Unified Diff: jingle/notifier/base/proxy_resolving_client_socket.h

Issue 7802002: Jingle unit tests for issue 87336 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | jingle/notifier/base/proxy_resolving_client_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/base/proxy_resolving_client_socket.h
diff --git a/jingle/notifier/base/proxy_resolving_client_socket.h b/jingle/notifier/base/proxy_resolving_client_socket.h
index a651403f070d24a1dcbccf4724fa4e4debd51b54..d2d24d92427a9e308c0f3f792a384c1292c24bd3 100644
--- a/jingle/notifier/base/proxy_resolving_client_socket.h
+++ b/jingle/notifier/base/proxy_resolving_client_socket.h
@@ -21,6 +21,7 @@
#include "net/socket/stream_socket.h"
namespace net {
+class ClientSocketFactory;
class ClientSocketHandle;
class HttpNetworkSession;
class URLRequestContextGetter;
@@ -32,10 +33,10 @@ namespace notifier {
class ProxyResolvingClientSocket : public net::StreamSocket {
public:
ProxyResolvingClientSocket(
- const scoped_refptr<net::URLRequestContextGetter>&
- request_context_getter,
- const net::SSLConfig& ssl_config,
- const net::HostPortPair& dest_host_port_pair);
+ net::ClientSocketFactory* socket_factory,
akalin 2011/09/13 22:37:49 add a comment explaining that you can pass in NULL
asanka 2011/09/14 19:08:07 Done. And correct. If socket_factory is NULL, we
+ const scoped_refptr<net::URLRequestContextGetter>& request_context_getter,
+ const net::SSLConfig& ssl_config,
+ const net::HostPortPair& dest_host_port_pair);
virtual ~ProxyResolvingClientSocket();
// net::StreamSocket implementation.
« no previous file with comments | « no previous file | jingle/notifier/base/proxy_resolving_client_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698