| Index: third_party/WebKit/Source/core/fileapi/Blob.cpp
|
| diff --git a/third_party/WebKit/Source/core/fileapi/Blob.cpp b/third_party/WebKit/Source/core/fileapi/Blob.cpp
|
| index 1de1f3f35003dad97879248e5a08f039b5d38aad..f3771ad2179839d1f40ad23a38ea883e75410b76 100644
|
| --- a/third_party/WebKit/Source/core/fileapi/Blob.cpp
|
| +++ b/third_party/WebKit/Source/core/fileapi/Blob.cpp
|
| @@ -82,7 +82,7 @@ URLRegistry& BlobURLRegistry::registry() {
|
| } // namespace
|
|
|
| Blob::Blob(PassRefPtr<BlobDataHandle> dataHandle)
|
| - : m_blobDataHandle(dataHandle), m_isClosed(false) {}
|
| + : m_blobDataHandle(std::move(dataHandle)), m_isClosed(false) {}
|
|
|
| Blob::~Blob() {}
|
|
|
|
|