summaryrefslogtreecommitdiffstats
path: root/WebCore/html/BlobBuilder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/BlobBuilder.cpp')
-rw-r--r--WebCore/html/BlobBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/html/BlobBuilder.cpp b/WebCore/html/BlobBuilder.cpp
index b2684fc..0592ff0 100644
--- a/WebCore/html/BlobBuilder.cpp
+++ b/WebCore/html/BlobBuilder.cpp
@@ -81,9 +81,9 @@ bool BlobBuilder::append(PassRefPtr<Blob> blob)
return false;
}
-PassRefPtr<Blob> BlobBuilder::getBlob(const String& contentType) const
+PassRefPtr<Blob> BlobBuilder::getBlob(ScriptExecutionContext* scriptExecutionContext, const String& contentType) const
{
- return Blob::create(contentType, m_items);
+ return Blob::create(scriptExecutionContext, contentType, m_items);
}
} // namespace WebCore