| 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)
|
|
|