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

Unified Diff: components/web_view/local_find_options.cc

Issue 1548203002: Convert Pass()→std::move() in //components/[n-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad headers 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 | « components/web_view/frame_tree.cc ('k') | components/web_view/navigation_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_view/local_find_options.cc
diff --git a/components/web_view/local_find_options.cc b/components/web_view/local_find_options.cc
index 706af5b53d7741e1a09ee85e70c42555bc01f290..1e0a67023c052676c689c30447d23fdfb2930dc3 100644
--- a/components/web_view/local_find_options.cc
+++ b/components/web_view/local_find_options.cc
@@ -12,7 +12,7 @@ TypeConverter<web_view::mojom::FindOptionsPtr, web_view::LocalFindOptions>::
web_view::mojom::FindOptionsPtr output = web_view::mojom::FindOptions::New();
output->forward = input.forward;
output->continue_last_find = input.continue_last_find;
- return output.Pass();
+ return output;
}
} // namespace mojo
« no previous file with comments | « components/web_view/frame_tree.cc ('k') | components/web_view/navigation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698