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

Unified Diff: chrome/test/chromedriver/net/url_request_context_getter.cc

Issue 1551503002: Convert Pass()→std::move() in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
Index: chrome/test/chromedriver/net/url_request_context_getter.cc
diff --git a/chrome/test/chromedriver/net/url_request_context_getter.cc b/chrome/test/chromedriver/net/url_request_context_getter.cc
index 187a2f6787c8f399959d756703f0dce13d1182df..cd06f76f656b8bd72611b1cabd9a4dbd792e2f3c 100644
--- a/chrome/test/chromedriver/net/url_request_context_getter.cc
+++ b/chrome/test/chromedriver/net/url_request_context_getter.cc
@@ -25,7 +25,7 @@ net::URLRequestContext* URLRequestContextGetter::GetURLRequestContext() {
builder.DisableHttpCache();
builder.set_proxy_config_service(make_scoped_ptr(
new net::ProxyConfigServiceFixed(net::ProxyConfig::CreateDirect())));
- url_request_context_ = builder.Build().Pass();
+ url_request_context_ = builder.Build();
}
return url_request_context_.get();
}

Powered by Google App Engine
This is Rietveld 408576698