| Index: third_party/WebCore/fileapi/FileReader.idl
|
| diff --git a/third_party/WebCore/fileapi/FileReader.idl b/third_party/WebCore/fileapi/FileReader.idl
|
| index 9a6440c301a76546a5fd3327ed6e6aa880f38ef4..51fe7128b3746d3b196f977cd65551d13ca54062 100644
|
| --- a/third_party/WebCore/fileapi/FileReader.idl
|
| +++ b/third_party/WebCore/fileapi/FileReader.idl
|
| @@ -46,13 +46,13 @@ module html {
|
|
|
| // async read methods
|
| void readAsArrayBuffer(in Blob blob)
|
| - raises(OperationNotAllowedException);
|
| + raises(DOMException);
|
| void readAsBinaryString(in Blob blob)
|
| - raises(OperationNotAllowedException);
|
| + raises(DOMException);
|
| void readAsText(in Blob blob, in [Optional] DOMString encoding)
|
| - raises(OperationNotAllowedException);
|
| + raises(DOMException);
|
| void readAsDataURL(in Blob blob)
|
| - raises(OperationNotAllowedException);
|
| + raises(DOMException);
|
|
|
| void abort();
|
|
|
|
|