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

Unified Diff: third_party/WebKit/Source/platform/PODFreeListArena.h

Issue 2306293002: Replaced PassRefPtr copies with moves in Source/platform. (Closed)
Patch Set: Created 4 years, 3 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 | « third_party/WebKit/Source/platform/PODArena.h ('k') | third_party/WebKit/Source/platform/blob/BlobData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/PODFreeListArena.h
diff --git a/third_party/WebKit/Source/platform/PODFreeListArena.h b/third_party/WebKit/Source/platform/PODFreeListArena.h
index f14dc8c7fd6ba892f0f1daec96eb88d9595145e0..7c68fe0e6d12a67a0c51210564542dacf91b2c64 100644
--- a/third_party/WebKit/Source/platform/PODFreeListArena.h
+++ b/third_party/WebKit/Source/platform/PODFreeListArena.h
@@ -88,7 +88,7 @@ private:
: m_arena(PODArena::create()), m_freeList(0) { }
explicit PODFreeListArena(PassRefPtr<PODArena::Allocator> allocator)
- : m_arena(PODArena::create(allocator)), m_freeList(0) { }
+ : m_arena(PODArena::create(std::move(allocator))), m_freeList(0) { }
~PODFreeListArena() { }
« no previous file with comments | « third_party/WebKit/Source/platform/PODArena.h ('k') | third_party/WebKit/Source/platform/blob/BlobData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698