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

Side by Side Diff: components/cronet/android/url_request_context_adapter.h

Issue 624443003: Setup ProxyConfigServiceAndroid in Cronet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_ 5 #ifndef COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_
6 #define COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_ 6 #define COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/threading/thread.h" 14 #include "base/threading/thread.h"
15 #include "net/base/net_log.h" 15 #include "net/base/net_log.h"
16 #include "net/base/network_change_notifier.h" 16 #include "net/base/network_change_notifier.h"
17 #include "net/proxy/proxy_config_service.h"
17 #include "net/url_request/url_request_context.h" 18 #include "net/url_request/url_request_context.h"
18 #include "net/url_request/url_request_context_getter.h" 19 #include "net/url_request/url_request_context_getter.h"
19 20
20 namespace net { 21 namespace net {
21 class NetLogLogger; 22 class NetLogLogger;
22 } // namespace net 23 } // namespace net
23 24
24 namespace cronet { 25 namespace cronet {
25 26
26 struct URLRequestContextConfig; 27 struct URLRequestContextConfig;
(...skipping 11 matching lines...) Expand all
38 DISALLOW_COPY_AND_ASSIGN(NetLogObserver); 39 DISALLOW_COPY_AND_ASSIGN(NetLogObserver);
39 }; 40 };
40 41
41 // Fully configured |URLRequestContext|. 42 // Fully configured |URLRequestContext|.
42 class URLRequestContextAdapter : public net::URLRequestContextGetter { 43 class URLRequestContextAdapter : public net::URLRequestContextGetter {
43 public: 44 public:
44 class URLRequestContextAdapterDelegate 45 class URLRequestContextAdapterDelegate
45 : public base::RefCountedThreadSafe<URLRequestContextAdapterDelegate> { 46 : public base::RefCountedThreadSafe<URLRequestContextAdapterDelegate> {
46 public: 47 public:
47 virtual void OnContextInitialized(URLRequestContextAdapter* context) = 0; 48 virtual void OnContextInitialized(URLRequestContextAdapter* context) = 0;
49 virtual void InitProxyConfigService() = 0;
48 50
49 protected: 51 protected:
50 friend class base::RefCountedThreadSafe<URLRequestContextAdapterDelegate>; 52 friend class base::RefCountedThreadSafe<URLRequestContextAdapterDelegate>;
51 53
52 virtual ~URLRequestContextAdapterDelegate() {} 54 virtual ~URLRequestContextAdapterDelegate() {}
53 }; 55 };
54 56
55 URLRequestContextAdapter(URLRequestContextAdapterDelegate* delegate, 57 URLRequestContextAdapter(URLRequestContextAdapterDelegate* delegate,
56 std::string user_agent); 58 std::string user_agent);
57 void Initialize(scoped_ptr<URLRequestContextConfig> config); 59 void Initialize(scoped_ptr<URLRequestContextConfig> config);
58 60
59 const std::string& GetUserAgent(const GURL& url) const; 61 const std::string& GetUserAgent(const GURL& url) const;
60 62
61 // net::URLRequestContextGetter implementation: 63 // net::URLRequestContextGetter implementation:
62 virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE; 64 virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE;
63 virtual scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner() 65 virtual scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner()
64 const OVERRIDE; 66 const OVERRIDE;
65 67
66 void StartNetLogToFile(const std::string& file_name); 68 void StartNetLogToFile(const std::string& file_name);
67 void StopNetLog(); 69 void StopNetLog();
70 void InitProxyConfigServiceOnUIThread();
68 71
69 private: 72 private:
70 scoped_refptr<URLRequestContextAdapterDelegate> delegate_; 73 scoped_refptr<URLRequestContextAdapterDelegate> delegate_;
71 scoped_ptr<net::URLRequestContext> context_; 74 scoped_ptr<net::URLRequestContext> context_;
72 std::string user_agent_; 75 std::string user_agent_;
73 base::Thread* network_thread_; 76 base::Thread* network_thread_;
74 scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_; 77 scoped_ptr<net::NetworkChangeNotifier> network_change_notifier_;
75 scoped_ptr<NetLogObserver> net_log_observer_; 78 scoped_ptr<NetLogObserver> net_log_observer_;
76 scoped_ptr<net::NetLogLogger> net_log_logger_; 79 scoped_ptr<net::NetLogLogger> net_log_logger_;
80 scoped_ptr<net::ProxyConfigService> proxy_config_service_;
81 scoped_ptr<URLRequestContextConfig> config_;
82 // Android specific UI MessageLoop.
83 scoped_ptr<base::MessageLoop> main_message_loop_;
77 84
78 virtual ~URLRequestContextAdapter(); 85 virtual ~URLRequestContextAdapter();
79 86
80 // Initializes |context_| on the Network thread. 87 // Initializes |context_| on the Network thread.
81 void InitializeURLRequestContext(scoped_ptr<URLRequestContextConfig> config); 88 void InitializeURLRequestContext(scoped_ptr<URLRequestContextConfig> config);
82 89
83 DISALLOW_COPY_AND_ASSIGN(URLRequestContextAdapter); 90 DISALLOW_COPY_AND_ASSIGN(URLRequestContextAdapter);
84 }; 91 };
85 92
86 } // namespace cronet 93 } // namespace cronet
87 94
88 #endif // COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_ 95 #endif // COMPONENTS_CRONET_ANDROID_URL_REQUEST_CONTEXT_ADAPTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698