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

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

Issue 1083683003: Speculative revert by sheriff (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed an unrelated commit that had accidentally slipped in. 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 scoped_ptr<HttpNetworkSession::Params> params) { 73 const HttpNetworkSession::Params& params) {
74 http_network_session_params_ = params.Pass();
75 } 74 }
76 75
77 void SetSdchManager(scoped_ptr<SdchManager> sdch_manager) { 76 void SetSdchManager(scoped_ptr<SdchManager> sdch_manager) {
78 context_storage_.set_sdch_manager(sdch_manager.Pass()); 77 context_storage_.set_sdch_manager(sdch_manager.Pass());
79 } 78 }
80 79
81 private: 80 private:
82 bool initialized_; 81 bool initialized_;
83 82
84 // Optional parameters to override default values. Note that values that 83 // Optional parameters to override default values. Note that values that
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 NetworkDelegate* network_delegate) const override; 417 NetworkDelegate* network_delegate) const override;
419 void set_main_intercept_job(URLRequestJob* job); 418 void set_main_intercept_job(URLRequestJob* job);
420 419
421 private: 420 private:
422 mutable URLRequestJob* main_intercept_job_; 421 mutable URLRequestJob* main_intercept_job_;
423 }; 422 };
424 423
425 } // namespace net 424 } // namespace net
426 425
427 #endif // NET_URL_REQUEST_URL_REQUEST_TEST_UTIL_H_ 426 #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