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

Unified Diff: content/child/web_process_memory_dump_impl.cc

Issue 1544293002: Convert Pass()→std::move() in //content (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 | « content/child/web_discardable_memory_impl.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/web_process_memory_dump_impl.cc
diff --git a/content/child/web_process_memory_dump_impl.cc b/content/child/web_process_memory_dump_impl.cc
index 47e9d1ae8154383d0e53a371138bc816ce810186..c8c3ca786174a6be97704da78111e2947c76d8e4 100644
--- a/content/child/web_process_memory_dump_impl.cc
+++ b/content/child/web_process_memory_dump_impl.cc
@@ -114,7 +114,7 @@ void WebProcessMemoryDumpImpl::takeAllDumpsFrom(
first_entry->first;
memory_allocator_dumps_.set(
memory_allocator_dump,
- other_impl->memory_allocator_dumps_.take_and_erase(first_entry).Pass());
+ other_impl->memory_allocator_dumps_.take_and_erase(first_entry));
}
DCHECK_EQ(expected_final_size, memory_allocator_dumps_.size());
DCHECK(other_impl->memory_allocator_dumps_.empty());
« no previous file with comments | « content/child/web_discardable_memory_impl.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698