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