diff options
Diffstat (limited to 'Source/WebCore/fileapi/FileError.idl')
-rw-r--r-- | Source/WebCore/fileapi/FileError.idl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/WebCore/fileapi/FileError.idl b/Source/WebCore/fileapi/FileError.idl index 866ce9274..34fa4acb5 100644 --- a/Source/WebCore/fileapi/FileError.idl +++ b/Source/WebCore/fileapi/FileError.idl @@ -29,12 +29,8 @@ */ [ - Conditional=BLOB, - JSNoStaticTables, ImplementationLacksVTable ] interface FileError { -#if !defined(LANGUAGE_OBJECTIVE_C) - // FIXME: Some of constant names are already defined in DOMException.h for Objective-C binding and we cannot have the same names here (they are translated into a enum in the same namespace). const unsigned short NOT_FOUND_ERR = 1; const unsigned short SECURITY_ERR = 2; const unsigned short ABORT_ERR = 3; @@ -47,6 +43,6 @@ const unsigned short QUOTA_EXCEEDED_ERR = 10; const unsigned short TYPE_MISMATCH_ERR = 11; const unsigned short PATH_EXISTS_ERR = 12; -#endif + readonly attribute unsigned short code; }; |