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

Unified Diff: net/url_request/url_request_context.cc

Issue 15829004: Update net/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: license twerk Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_context.h ('k') | net/url_request/url_request_context_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context.cc
diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
index 318d5f9357b9b996228d53bb3633e0808123735c..0f238e0fb5bc1e08f37cd61de3938fd02a4c060d 100644
--- a/net/url_request/url_request_context.cc
+++ b/net/url_request/url_request_context.cc
@@ -47,10 +47,10 @@ void URLRequestContext::CopyFrom(const URLRequestContext* other) {
set_fraudulent_certificate_reporter(other->fraudulent_certificate_reporter_);
set_http_auth_handler_factory(other->http_auth_handler_factory_);
set_proxy_service(other->proxy_service_);
- set_ssl_config_service(other->ssl_config_service_);
+ set_ssl_config_service(other->ssl_config_service_.get());
set_network_delegate(other->network_delegate_);
set_http_server_properties(other->http_server_properties_);
- set_cookie_store(other->cookie_store_);
+ set_cookie_store(other->cookie_store_.get());
set_transport_security_state(other->transport_security_state_);
set_http_transaction_factory(other->http_transaction_factory_);
set_job_factory(other->job_factory_);
« no previous file with comments | « net/url_request/url_request_context.h ('k') | net/url_request/url_request_context_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698