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

Unified Diff: Source/core/fileapi/FileError.h

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/core/dom/ExceptionCode.h ('k') | Source/core/fileapi/FileError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileError.h
diff --git a/Source/core/fileapi/FileError.h b/Source/core/fileapi/FileError.h
index 509e71607cec1b033c7268769d0931549c97928f..dc2c9c200093d20483fdfead595e548cb1db8579 100644
--- a/Source/core/fileapi/FileError.h
+++ b/Source/core/fileapi/FileError.h
@@ -32,6 +32,7 @@
#define FileError_h
#include "bindings/v8/ScriptWrappable.h"
+#include "core/dom/ExceptionCode.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
@@ -58,6 +59,7 @@ public:
static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); }
ErrorCode code() const { return m_code; }
+ static ExceptionCode ErrorCodeToExceptionCode(ErrorCode);
private:
FileError(ErrorCode code)
« no previous file with comments | « Source/core/dom/ExceptionCode.h ('k') | Source/core/fileapi/FileError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698