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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp

Issue 2308343002: Replaced PassRefPtr copites with moves in Source/modules. (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
Index: third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp b/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
index 7540e00738ac65d18a46e834660d62362e0c6b49..27f17735dfda64f4f6a9efe3fa2ed91f2b50c57e 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationConnection.cpp
@@ -125,7 +125,7 @@ public:
: m_PresentationConnection(PresentationConnection)
, m_loader(FileReaderLoader::create(FileReaderLoader::ReadAsArrayBuffer, this))
{
- m_loader->start(m_PresentationConnection->getExecutionContext(), blobDataHandle);
+ m_loader->start(m_PresentationConnection->getExecutionContext(), std::move(blobDataHandle));
}
~BlobLoader() override { }

Powered by Google App Engine
This is Rietveld 408576698