| OLD | NEW |
| 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 #ifndef REMOTING_HOST_URL_REQUEST_CONTEXT_H_ | 5 #ifndef REMOTING_HOST_URL_REQUEST_CONTEXT_H_ |
| 6 #define REMOTING_HOST_URL_REQUEST_CONTEXT_H_ | 6 #define REMOTING_HOST_URL_REQUEST_CONTEXT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "net/proxy/proxy_config_service.h" | 13 #include "net/proxy/proxy_config_service.h" |
| 14 #include "net/url_request/url_request_context.h" | 14 #include "net/url_request/url_request_context.h" |
| 15 #include "net/url_request/url_request_context_getter.h" | 15 #include "net/url_request/url_request_context_getter.h" |
| 16 #include "net/url_request/url_request_context_storage.h" | 16 #include "net/url_request/url_request_context_storage.h" |
| 17 #include "remoting/host/vlog_net_log.h" | |
| 18 | 17 |
| 19 namespace base { | 18 namespace base { |
| 20 class MessageLoopProxy; | 19 class MessageLoopProxy; |
| 21 } // namespace base | 20 } // namespace base |
| 22 | 21 |
| 23 namespace remoting { | 22 namespace remoting { |
| 24 | 23 |
| 25 // Subclass of net::URLRequestContext which can be used to store extra | 24 // Subclass of net::URLRequestContext which can be used to store extra |
| 26 // information for requests. This subclass is meant to be used in the | 25 // information for requests. This subclass is meant to be used in the |
| 27 // remoting Me2Me host process where the profile is not available. | 26 // remoting Me2Me host process where the profile is not available. |
| 28 class URLRequestContext : public net::URLRequestContext { | 27 class URLRequestContext : public net::URLRequestContext { |
| 29 public: | 28 public: |
| 30 explicit URLRequestContext(net::ProxyConfigService* net_proxy_config_service); | 29 explicit URLRequestContext( |
| 30 scoped_ptr<net::ProxyConfigService> proxy_config_service); |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 virtual ~URLRequestContext(); | 33 virtual ~URLRequestContext(); |
| 34 | 34 |
| 35 net::URLRequestContextStorage storage_; | 35 net::URLRequestContextStorage storage_; |
| 36 scoped_ptr<VlogNetLog> net_log_; | |
| 37 | 36 |
| 38 DISALLOW_COPY_AND_ASSIGN(URLRequestContext); | 37 DISALLOW_COPY_AND_ASSIGN(URLRequestContext); |
| 39 }; | 38 }; |
| 40 | 39 |
| 41 class URLRequestContextGetter : public net::URLRequestContextGetter { | 40 class URLRequestContextGetter : public net::URLRequestContextGetter { |
| 42 public: | 41 public: |
| 43 URLRequestContextGetter(MessageLoop* io_message_loop, | 42 URLRequestContextGetter(MessageLoop* io_message_loop, |
| 44 MessageLoop* file_message_loop); | 43 MessageLoop* file_message_loop); |
| 45 | 44 |
| 46 // Overridden from net::URLRequestContextGetter: | 45 // Overridden from net::URLRequestContextGetter: |
| 47 virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE; | 46 virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE; |
| 48 virtual scoped_refptr<base::MessageLoopProxy> | 47 virtual scoped_refptr<base::MessageLoopProxy> |
| 49 GetIOMessageLoopProxy() const OVERRIDE; | 48 GetIOMessageLoopProxy() const OVERRIDE; |
| 50 | 49 |
| 51 protected: | 50 protected: |
| 52 virtual ~URLRequestContextGetter(); | 51 virtual ~URLRequestContextGetter(); |
| 53 | 52 |
| 54 private: | 53 private: |
| 55 scoped_refptr<net::URLRequestContext> url_request_context_; | 54 scoped_refptr<net::URLRequestContext> url_request_context_; |
| 56 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; | 55 scoped_refptr<base::MessageLoopProxy> io_message_loop_proxy_; |
| 57 scoped_ptr<net::ProxyConfigService> proxy_config_service_; | 56 scoped_ptr<net::ProxyConfigService> proxy_config_service_; |
| 58 | 57 |
| 59 DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter); | 58 DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter); |
| 60 }; | 59 }; |
| 61 | 60 |
| 62 } // namespace remoting | 61 } // namespace remoting |
| 63 | 62 |
| 64 #endif // CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_H_ | 63 #endif // CHROME_SERVICE_NET_SERVICE_URL_REQUEST_CONTEXT_H_ |
| OLD | NEW |