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

Unified Diff: third_party/WebCore/fileapi/FileReader.idl

Issue 10542124: Roll IDL to multivm@603 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
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();
« no previous file with comments | « third_party/WebCore/fileapi/FileList.idl ('k') | third_party/WebCore/fileapi/OperationNotAllowedException.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698