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

Side by Side Diff: net/url_request/url_request_test_util.h

Issue 1735203002: Revert of Moving proxy resolution logic out of NetworkDelegate and into ProxyDelegate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « net/proxy/proxy_service_unittest.cc ('k') | net/url_request/url_request_test_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_
6 #define NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <stdlib.h> 9 #include <stdlib.h>
10 #include <map> 10 #include <map>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 void Init(); 63 void Init();
64 64
65 ClientSocketFactory* client_socket_factory() { 65 ClientSocketFactory* client_socket_factory() {
66 return client_socket_factory_; 66 return client_socket_factory_;
67 } 67 }
68 void set_client_socket_factory(ClientSocketFactory* factory) { 68 void set_client_socket_factory(ClientSocketFactory* factory) {
69 client_socket_factory_ = factory; 69 client_socket_factory_ = factory;
70 } 70 }
71 71
72 ProxyDelegate* proxy_delegate() { return proxy_delegate_; }
73
74 void set_proxy_delegate(ProxyDelegate* proxy_delegate) {
75 proxy_delegate_ = proxy_delegate;
76 }
77
78 void set_http_network_session_params( 72 void set_http_network_session_params(
79 scoped_ptr<HttpNetworkSession::Params> params) { 73 scoped_ptr<HttpNetworkSession::Params> params) {
80 http_network_session_params_ = std::move(params); 74 http_network_session_params_ = std::move(params);
81 } 75 }
82 76
83 void SetSdchManager(scoped_ptr<SdchManager> sdch_manager) { 77 void SetSdchManager(scoped_ptr<SdchManager> sdch_manager) {
84 context_storage_.set_sdch_manager(std::move(sdch_manager)); 78 context_storage_.set_sdch_manager(std::move(sdch_manager));
85 } 79 }
86 80
87 private: 81 private:
88 bool initialized_; 82 bool initialized_;
89 83
90 // Optional parameters to override default values. Note that values that 84 // Optional parameters to override default values. Note that values that
91 // point to other objects the TestURLRequestContext creates will be 85 // point to other objects the TestURLRequestContext creates will be
92 // overwritten. 86 // overwritten.
93 scoped_ptr<HttpNetworkSession::Params> http_network_session_params_; 87 scoped_ptr<HttpNetworkSession::Params> http_network_session_params_;
94 88
95 // Not owned: 89 // Not owned:
96 ClientSocketFactory* client_socket_factory_; 90 ClientSocketFactory* client_socket_factory_;
97 91
98 ProxyDelegate* proxy_delegate_;
99
100 protected: 92 protected:
101 URLRequestContextStorage context_storage_; 93 URLRequestContextStorage context_storage_;
102 }; 94 };
103 95
104 //----------------------------------------------------------------------------- 96 //-----------------------------------------------------------------------------
105 97
106 // Used to return a dummy context, which lives on the message loop 98 // Used to return a dummy context, which lives on the message loop
107 // given in the constructor. 99 // given in the constructor.
108 class TestURLRequestContextGetter : public URLRequestContextGetter { 100 class TestURLRequestContextGetter : public URLRequestContextGetter {
109 public: 101 public:
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 NetworkDelegate* network_delegate) const override; 404 NetworkDelegate* network_delegate) const override;
413 void set_main_intercept_job(scoped_ptr<URLRequestJob> job); 405 void set_main_intercept_job(scoped_ptr<URLRequestJob> job);
414 406
415 private: 407 private:
416 mutable scoped_ptr<URLRequestJob> main_intercept_job_; 408 mutable scoped_ptr<URLRequestJob> main_intercept_job_;
417 }; 409 };
418 410
419 } // namespace net 411 } // namespace net
420 412
421 #endif // NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_ 413 #endif // NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_
OLDNEW
« no previous file with comments | « net/proxy/proxy_service_unittest.cc ('k') | net/url_request/url_request_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698