Chromium Code Reviews| Index: third_party/WebKit/Source/core/fileapi/FileReader.idl |
| diff --git a/third_party/WebKit/Source/core/fileapi/FileReader.idl b/third_party/WebKit/Source/core/fileapi/FileReader.idl |
| index f3bb0f1da86627f62a570f4dd04d83428cf704d3..d08b8c9cf6e4889e0a632e8f4d864d94f96c3a8c 100644 |
| --- a/third_party/WebKit/Source/core/fileapi/FileReader.idl |
| +++ b/third_party/WebKit/Source/core/fileapi/FileReader.idl |
| @@ -58,8 +58,7 @@ |
| // File or Blob data |
| readonly attribute (DOMString or ArrayBuffer)? result; |
| - // TODO(foolip): error should be DOMError. crbug.com/496901 |
| - [Measure] readonly attribute FileError? error; |
| + [Measure] readonly attribute DOMException? error; |
|
jsbell
2016/06/03 21:41:58
Should probably have a TODO here explaining why it
foolip
2016/06/08 10:04:44
Yep. And I guess remove [Measure] if this is the e
jsbell
2016/06/08 17:27:42
Will do.
|
| // event handler attributes |
| attribute EventHandler onloadstart; |