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

Side by Side Diff: jingle/notifier/base/xmpp_client_socket_factory.h

Issue 7014009: Pass net_log parameter properly for ProxyResolvingClientSocket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 JINGLE_NOTIFIER_BASE_XMPP_CLIENT_SOCKET_FACTORY_H_ 5 #ifndef JINGLE_NOTIFIER_BASE_XMPP_CLIENT_SOCKET_FACTORY_H_
6 #define JINGLE_NOTIFIER_BASE_XMPP_CLIENT_SOCKET_FACTORY_H_ 6 #define JINGLE_NOTIFIER_BASE_XMPP_CLIENT_SOCKET_FACTORY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 19 matching lines...) Expand all
30 XmppClientSocketFactory( 30 XmppClientSocketFactory(
31 net::ClientSocketFactory* client_socket_factory, 31 net::ClientSocketFactory* client_socket_factory,
32 const net::SSLConfig& ssl_config, 32 const net::SSLConfig& ssl_config,
33 const scoped_refptr<net::URLRequestContextGetter>& request_context_getter, 33 const scoped_refptr<net::URLRequestContextGetter>& request_context_getter,
34 bool use_fake_ssl_client_socket); 34 bool use_fake_ssl_client_socket);
35 35
36 virtual ~XmppClientSocketFactory(); 36 virtual ~XmppClientSocketFactory();
37 37
38 // ResolvingClientSocketFactory implementation. 38 // ResolvingClientSocketFactory implementation.
39 virtual net::StreamSocket* CreateTransportClientSocket( 39 virtual net::StreamSocket* CreateTransportClientSocket(
40 const net::HostPortPair& host_and_port, net::NetLog* net_log); 40 const net::HostPortPair& host_and_port);
41 41
42 virtual net::SSLClientSocket* CreateSSLClientSocket( 42 virtual net::SSLClientSocket* CreateSSLClientSocket(
43 net::ClientSocketHandle* transport_socket, 43 net::ClientSocketHandle* transport_socket,
44 const net::HostPortPair& host_and_port); 44 const net::HostPortPair& host_and_port);
45 45
46 private: 46 private:
47 net::ClientSocketFactory* const client_socket_factory_; 47 net::ClientSocketFactory* const client_socket_factory_;
48 scoped_refptr<net::URLRequestContextGetter> request_context_getter_; 48 scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
49 const net::SSLConfig ssl_config_; 49 const net::SSLConfig ssl_config_;
50 const bool use_fake_ssl_client_socket_; 50 const bool use_fake_ssl_client_socket_;
51 51
52 DISALLOW_COPY_AND_ASSIGN(XmppClientSocketFactory); 52 DISALLOW_COPY_AND_ASSIGN(XmppClientSocketFactory);
53 }; 53 };
54 54
55 } // namespace notifier 55 } // namespace notifier
56 56
57 #endif // JINGLE_NOTIFIER_BASE_XMPP_CLIENT_SOCKET_FACTORY_H_ 57 #endif // JINGLE_NOTIFIER_BASE_XMPP_CLIENT_SOCKET_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698