| 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 b02d18ed16ffec887896c895a49fee27664c74c0..719b6fe8f188ce00537b6ff7551f91a462775c62 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
|
| @@ -94,8 +94,9 @@ void WebFileSystemCallbacks::didReadMetadata(const WebFileInfo& webFileInfo) {
|
| void WebFileSystemCallbacks::didCreateSnapshotFile(
|
| const WebFileInfo& webFileInfo) {
|
| ASSERT(!m_private.isNull());
|
| - // It's important to create a BlobDataHandle that refers to the platform file path prior
|
| - // to return from this method so the underlying file will not be deleted.
|
| + // It's important to create a BlobDataHandle that refers to the platform file
|
| + // path prior to return from this method so the underlying file will not be
|
| + // deleted.
|
| std::unique_ptr<BlobData> blobData = BlobData::create();
|
| blobData->appendFile(webFileInfo.platformPath, 0, webFileInfo.length,
|
| invalidFileTime());
|
|
|