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

Unified Diff: android_webview/native/aw_contents_io_thread_client_impl.cc

Issue 1552723002: Convert Pass()→std::move() in //android_webview (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
« no previous file with comments | « android_webview/native/aw_contents.cc ('k') | android_webview/native/aw_dev_tools_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_contents_io_thread_client_impl.cc
diff --git a/android_webview/native/aw_contents_io_thread_client_impl.cc b/android_webview/native/aw_contents_io_thread_client_impl.cc
index 89c2af78823de04401f24df77a66fd2de9b48a77..d00b26043cce7e60c45b4c67da6ce5dbd2024ccc 100644
--- a/android_webview/native/aw_contents_io_thread_client_impl.cc
+++ b/android_webview/native/aw_contents_io_thread_client_impl.cc
@@ -308,7 +308,7 @@ scoped_ptr<AwWebResourceResponse> RunShouldInterceptRequest(
web_request.jstringArray_header_names.obj(),
web_request.jstringArray_header_values.obj());
return scoped_ptr<AwWebResourceResponse>(
- ret.is_null() ? nullptr : new AwWebResourceResponseImpl(ret)).Pass();
+ ret.is_null() ? nullptr : new AwWebResourceResponseImpl(ret));
}
scoped_ptr<AwWebResourceResponse> ReturnNull() {
« no previous file with comments | « android_webview/native/aw_contents.cc ('k') | android_webview/native/aw_dev_tools_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698