Index: Source/modules/filesystem/InspectorFileSystemAgent.cpp |
diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp |
index 038b03118685f61b2cc8d3098acb59d4cb734bf4..9f48df04a3a411e46fe29c6b805fe11eaf554a06 100644 |
--- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp |
+++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp |
@@ -470,7 +470,7 @@ bool FileContentRequest::didGetEntry(Entry* entry) |
bool FileContentRequest::didGetFile(File* file) |
{ |
- RefPtr<Blob> blob = file->slice(m_start, m_end); |
+ RefPtr<Blob> blob = static_cast<Blob*>(file)->slice(m_start, m_end, IGNORE_EXCEPTION); |
m_reader->setOnload(this); |
m_reader->setOnerror(this); |