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

Unified Diff: net/url_request/url_request_context_builder_unittest.cc

Issue 1303493002: Make UrlRequestContextBuilder take scoped_ptr's (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync and fix tiny resulting build failure Created 5 years, 4 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_builder.cc ('k') | remoting/base/url_request_context_getter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context_builder_unittest.cc
diff --git a/net/url_request/url_request_context_builder_unittest.cc b/net/url_request/url_request_context_builder_unittest.cc
index ecafea3b2108f84c29777a3a93a1ce37a5604337..e37b51e6b364cebebe99f3d1f27841644517446c 100644
--- a/net/url_request/url_request_context_builder_unittest.cc
+++ b/net/url_request/url_request_context_builder_unittest.cc
@@ -53,8 +53,8 @@ class URLRequestContextBuilderTest : public PlatformTest {
base::FilePath(
FILE_PATH_LITERAL("net/data/url_request_unittest"))) {
#if defined(OS_LINUX) || defined(OS_ANDROID)
- builder_.set_proxy_config_service(
- new ProxyConfigServiceFixed(ProxyConfig::CreateDirect()));
+ builder_.set_proxy_config_service(make_scoped_ptr(
+ new ProxyConfigServiceFixed(ProxyConfig::CreateDirect())));
#endif // defined(OS_LINUX) || defined(OS_ANDROID)
}
« no previous file with comments | « net/url_request/url_request_context_builder.cc ('k') | remoting/base/url_request_context_getter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698