summaryrefslogtreecommitdiffstats
path: root/WebCore/fileapi/FileReader.idl
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/fileapi/FileReader.idl')
-rw-r--r--WebCore/fileapi/FileReader.idl9
1 files changed, 5 insertions, 4 deletions
diff --git a/WebCore/fileapi/FileReader.idl b/WebCore/fileapi/FileReader.idl
index b36e9d3..febb231 100644
--- a/WebCore/fileapi/FileReader.idl
+++ b/WebCore/fileapi/FileReader.idl
@@ -34,7 +34,8 @@ module html {
CanBeConstructed,
CallWith=ScriptExecutionContext,
EventTarget,
- NoStaticTables
+ NoStaticTables,
+ V8CustomConstructor
] FileReader {
// ready states
const unsigned short EMPTY = 0;
@@ -43,9 +44,9 @@ module html {
readonly attribute unsigned short readyState;
// async read methods
- void readAsBinaryString(in Blob fileBlob);
- void readAsText(in Blob fileBlob, in [Optional] DOMString encoding);
- void readAsDataURL(in File file);
+ void readAsBinaryString(in Blob blob);
+ void readAsText(in Blob blob, in [Optional] DOMString encoding);
+ void readAsDataURL(in Blob blob);
void abort();