| Index: Source/modules/filesystem/FileWriter.cpp
|
| diff --git a/Source/modules/filesystem/FileWriter.cpp b/Source/modules/filesystem/FileWriter.cpp
|
| index cabe97eda7f690f7713fbf619b16a495426d8601..0b069ec04e8e1eb45908f0685bba6c61a362d32e 100644
|
| --- a/Source/modules/filesystem/FileWriter.cpp
|
| +++ b/Source/modules/filesystem/FileWriter.cpp
|
| @@ -36,7 +36,6 @@
|
| #include "core/dom/ProgressEvent.h"
|
| #include "core/fileapi/Blob.h"
|
| #include "core/fileapi/FileError.h"
|
| -#include "core/fileapi/FileException.h"
|
| #include "modules/filesystem/AsyncFileWriter.h"
|
| #include "wtf/CurrentTime.h"
|
|
|
| @@ -321,7 +320,7 @@ void FileWriter::fireEvent(const AtomicString& type)
|
|
|
| void FileWriter::setError(FileError::ErrorCode errorCode, ExceptionCode& ec)
|
| {
|
| - ec = FileException::ErrorCodeToExceptionCode(errorCode);
|
| + ec = FileError::ErrorCodeToExceptionCode(errorCode);
|
| m_error = FileError::create(errorCode);
|
| }
|
|
|
|
|