Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1354)

Unified Diff: Source/modules/filesystem/FileWriter.cpp

Issue 17761003: Remove FileException (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile warning Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/filesystem/EntrySync.cpp ('k') | Source/modules/filesystem/FileWriterBase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « Source/modules/filesystem/EntrySync.cpp ('k') | Source/modules/filesystem/FileWriterBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698