summaryrefslogtreecommitdiff
path: root/Source/WebCore/fileapi/FileReaderLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/fileapi/FileReaderLoader.h')
-rw-r--r--Source/WebCore/fileapi/FileReaderLoader.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/WebCore/fileapi/FileReaderLoader.h b/Source/WebCore/fileapi/FileReaderLoader.h
index 435662613..0bdf08c88 100644
--- a/Source/WebCore/fileapi/FileReaderLoader.h
+++ b/Source/WebCore/fileapi/FileReaderLoader.h
@@ -31,8 +31,6 @@
#ifndef FileReaderLoader_h
#define FileReaderLoader_h
-#if ENABLE(BLOB)
-
#include "FileError.h"
#include "URL.h"
#include "TextEncoding.h"
@@ -76,7 +74,7 @@ public:
virtual void didFail(const ResourceError&);
String stringResult();
- PassRefPtr<JSC::ArrayBuffer> arrayBufferResult() const;
+ RefPtr<JSC::ArrayBuffer> arrayBufferResult() const;
unsigned bytesLoaded() const { return m_bytesLoaded; }
unsigned totalBytes() const { return m_totalBytes; }
int errorCode() const { return m_errorCode; }
@@ -125,6 +123,4 @@ private:
} // namespace WebCore
-#endif // ENABLE(BLOB)
-
#endif // FileReaderLoader_h