| Index: Source/core/fileapi/Blob.cpp
|
| diff --git a/Source/core/fileapi/Blob.cpp b/Source/core/fileapi/Blob.cpp
|
| index 4fa8e1f947b7f35a4758164e9c749141686ff264..ec287d558692c705be178b2b2447e2050c3bd7db 100644
|
| --- a/Source/core/fileapi/Blob.cpp
|
| +++ b/Source/core/fileapi/Blob.cpp
|
| @@ -31,6 +31,7 @@
|
| #include "config.h"
|
| #include "core/fileapi/Blob.h"
|
|
|
| +#include "core/fileapi/File.h"
|
| #include "platform/blob/BlobRegistry.h"
|
| #include "platform/blob/BlobURL.h"
|
|
|
| @@ -65,6 +66,8 @@ URLRegistry& BlobURLRegistry::registry()
|
|
|
| } // namespace
|
|
|
| +DEFINE_GC_INFO(Blob);
|
| +
|
| Blob::Blob(PassRefPtr<BlobDataHandle> dataHandle)
|
| : m_blobDataHandle(dataHandle)
|
| {
|
| @@ -99,7 +102,7 @@ void Blob::clampSliceOffsets(long long size, long long& start, long long& end)
|
| end = size;
|
| }
|
|
|
| -PassRefPtr<Blob> Blob::slice(long long start, long long end, const String& contentType) const
|
| +PassRefPtrWillBeRawPtr<Blob> Blob::slice(long long start, long long end, const String& contentType) const
|
| {
|
| long long size = this->size();
|
| clampSliceOffsets(size, start, end);
|
| @@ -121,5 +124,4 @@ URLRegistry& Blob::registry() const
|
| return BlobURLRegistry::registry();
|
| }
|
|
|
| -
|
| } // namespace WebCore
|
|
|