Index: third_party/WebKit/Source/core/fileapi/FileReaderSync.h |
diff --git a/third_party/WebKit/Source/core/fileapi/FileReaderSync.h b/third_party/WebKit/Source/core/fileapi/FileReaderSync.h |
index 72b131489ee14045944360e86f084519d13792ea..830c5cfcfb39c28165245c6747c8814827a01adc 100644 |
--- a/third_party/WebKit/Source/core/fileapi/FileReaderSync.h |
+++ b/third_party/WebKit/Source/core/fileapi/FileReaderSync.h |
@@ -33,6 +33,7 @@ |
#include "bindings/core/v8/ScriptWrappable.h" |
#include "platform/heap/Handle.h" |
+#include "wtf/RefCounted.h" |
#include "wtf/text/WTFString.h" |
namespace blink { |
@@ -51,7 +52,7 @@ |
return new FileReaderSync(); |
} |
- DOMArrayBuffer* readAsArrayBuffer(ExecutionContext*, Blob*, ExceptionState&); |
+ PassRefPtr<DOMArrayBuffer> readAsArrayBuffer(ExecutionContext*, Blob*, ExceptionState&); |
String readAsBinaryString(ExecutionContext*, Blob*, ExceptionState&); |
String readAsText(ExecutionContext* executionContext, Blob* blob, ExceptionState& ec) |
{ |