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

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

Issue 1094553002: Revert "Speculative revert by sheriff" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/url_request/url_fetcher_impl_unittest.cc ('k') | sync/BUILD.gn » ('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 <stdlib.h> 8 #include <stdlib.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 void set_http_network_session_params( 72 void set_http_network_session_params(
73 const HttpNetworkSession::Params& params) { 73 scoped_ptr<HttpNetworkSession::Params> params) {
74 http_network_session_params_ = params.Pass();
74 } 75 }
75 76
76 void SetSdchManager(scoped_ptr<SdchManager> sdch_manager) { 77 void SetSdchManager(scoped_ptr<SdchManager> sdch_manager) {
77 context_storage_.set_sdch_manager(sdch_manager.Pass()); 78 context_storage_.set_sdch_manager(sdch_manager.Pass());
78 } 79 }
79 80
80 private: 81 private:
81 bool initialized_; 82 bool initialized_;
82 83
83 // Optional parameters to override default values. Note that values that 84 // Optional parameters to override default values. Note that values that
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 NetworkDelegate* network_delegate) const override; 418 NetworkDelegate* network_delegate) const override;
418 void set_main_intercept_job(URLRequestJob* job); 419 void set_main_intercept_job(URLRequestJob* job);
419 420
420 private: 421 private:
421 mutable URLRequestJob* main_intercept_job_; 422 mutable URLRequestJob* main_intercept_job_;
422 }; 423 };
423 424
424 } // namespace net 425 } // namespace net
425 426
426 #endif // NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_ 427 #endif // NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_
OLDNEW
« no previous file with comments | « net/url_request/url_fetcher_impl_unittest.cc ('k') | sync/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698