diff options
Diffstat (limited to 'remoting/host/setup')
-rw-r--r-- | remoting/host/setup/start_host.cc | 4 | ||||
-rw-r--r-- | remoting/host/setup/win/host_configurer.cc | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/remoting/host/setup/start_host.cc b/remoting/host/setup/start_host.cc index 024e9a3..ab5688db 100644 --- a/remoting/host/setup/start_host.cc +++ b/remoting/host/setup/start_host.cc @@ -149,9 +149,7 @@ int main(int argc, char** argv) { io_thread.StartWithOptions(io_thread_options); scoped_refptr<net::URLRequestContextGetter> url_request_context_getter( - new remoting::URLRequestContextGetter( - g_message_loop->message_loop_proxy(), - io_thread.message_loop_proxy())); + new remoting::URLRequestContextGetter(io_thread.message_loop_proxy())); net::URLFetcher::SetIgnoreCertificateRequests(true); diff --git a/remoting/host/setup/win/host_configurer.cc b/remoting/host/setup/win/host_configurer.cc index bf5b8a6..604c9e4 100644 --- a/remoting/host/setup/win/host_configurer.cc +++ b/remoting/host/setup/win/host_configurer.cc @@ -45,8 +45,7 @@ int WINAPI WinMain(HINSTANCE instance_handle, HINSTANCE prev_instance_handle, io_thread.StartWithOptions(io_thread_options); scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_( - new remoting::URLRequestContextGetter( - message_loop.message_loop_proxy(), io_thread.message_loop_proxy())); + new remoting::URLRequestContextGetter(io_thread.message_loop_proxy())); OleInitialize(NULL); |