| Index: Source/core/fileapi/FileReaderLoader.h
|
| diff --git a/Source/core/fileapi/FileReaderLoader.h b/Source/core/fileapi/FileReaderLoader.h
|
| index c4b0291553c1b6c27b52bfd60531cc29f738e2c0..d89bbf098cc9af050ee3df0b9696f7c820befcc9 100644
|
| --- a/Source/core/fileapi/FileReaderLoader.h
|
| +++ b/Source/core/fileapi/FileReaderLoader.h
|
| @@ -71,18 +71,12 @@ public:
|
|
|
| String stringResult();
|
| PassRefPtr<ArrayBuffer> arrayBufferResult() const;
|
| -#if ENABLE(STREAM)
|
| - PassRefPtr<Blob> blobResult();
|
| -#endif // ENABLE(STREAM)
|
| unsigned bytesLoaded() const { return m_bytesLoaded; }
|
| unsigned totalBytes() const { return m_totalBytes; }
|
| FileError::ErrorCode errorCode() const { return m_errorCode; }
|
|
|
| void setEncoding(const String&);
|
| void setDataType(const String& dataType) { m_dataType = dataType; }
|
| -#if ENABLE(STREAM)
|
| - void setRange(unsigned, unsigned);
|
| -#endif // ENABLE(STREAM)
|
|
|
| private:
|
| void terminate();
|
|
|