Index: Source/bindings/v8/custom/V8BlobCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8BlobCustom.cpp b/Source/bindings/v8/custom/V8BlobCustom.cpp |
index 94a4ff4a2dbcdfb4880175a6a1fd39e068a1f7ba..d4bc1c225a25c61d639ce28b8dcf94c9abb5be80 100644 |
--- a/Source/bindings/v8/custom/V8BlobCustom.cpp |
+++ b/Source/bindings/v8/custom/V8BlobCustom.cpp |
@@ -40,7 +40,7 @@ void V8Blob::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
ExceptionState exceptionState(ExceptionState::ConstructionContext, "Blob", info.Holder(), info.GetIsolate()); |
if (!info.Length()) { |
- RefPtr<Blob> blob = Blob::create(); |
+ RefPtrWillBeRawPtr<Blob> blob = Blob::create(); |
v8SetReturnValue(info, blob.release()); |
return; |
} |
@@ -78,7 +78,7 @@ void V8Blob::constructorCustom(const v8::FunctionCallbackInfo<v8::Value>& info) |
return; |
long long blobSize = blobData->length(); |
- RefPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize)); |
+ RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize)); |
v8SetReturnValue(info, blob.release()); |
} |