| Index: third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp b/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| index 1a6053ec1c6d79353c3748f65fed3cea2e8da3d4..410ccbc7f5f180ff630868c2079732430bd7e19b 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| @@ -98,7 +98,7 @@ void WebFileSystemCallbacks::didCreateSnapshotFile(const WebFileInfo& webFileInf
|
| // to return from this method so the underlying file will not be deleted.
|
| OwnPtr<BlobData> blobData = BlobData::create();
|
| blobData->appendFile(webFileInfo.platformPath, 0, webFileInfo.length, invalidFileTime());
|
| - RefPtr<BlobDataHandle> snapshotBlob = BlobDataHandle::create(blobData.release(), webFileInfo.length);
|
| + RefPtr<BlobDataHandle> snapshotBlob = BlobDataHandle::create(std::move(blobData), webFileInfo.length);
|
|
|
| FileMetadata fileMetadata;
|
| fileMetadata.modificationTime = webFileInfo.modificationTime;
|
|
|