| Index: Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| diff --git a/Source/modules/filesystem/InspectorFileSystemAgent.cpp b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| index 2c339e910998b6a47be35663698f963e099bb1db..a2e4bf73b87b0da15300ce6840a82375c7893eae 100644
|
| --- a/Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| +++ b/Source/modules/filesystem/InspectorFileSystemAgent.cpp
|
| @@ -32,6 +32,7 @@
|
| #include "modules/filesystem/InspectorFileSystemAgent.h"
|
|
|
| #include "bindings/core/v8/ExceptionStatePlaceholder.h"
|
| +#include "core/dom/DOMArrayBuffer.h"
|
| #include "core/dom/DOMImplementation.h"
|
| #include "core/dom/Document.h"
|
| #include "core/events/Event.h"
|
| @@ -60,7 +61,6 @@
|
| #include "platform/heap/Handle.h"
|
| #include "platform/weborigin/KURL.h"
|
| #include "platform/weborigin/SecurityOrigin.h"
|
| -#include "wtf/ArrayBuffer.h"
|
| #include "wtf/text/Base64.h"
|
| #include "wtf/text/TextEncoding.h"
|
|
|
| @@ -482,7 +482,7 @@ bool FileContentRequest::didGetFile(File* file)
|
|
|
| void FileContentRequest::didRead()
|
| {
|
| - RefPtr<ArrayBuffer> buffer = m_reader->arrayBufferResult();
|
| + RefPtr<DOMArrayBuffer> buffer = m_reader->arrayBufferResult();
|
|
|
| if (!m_readAsText) {
|
| String result = base64Encode(static_cast<char*>(buffer->data()), buffer->byteLength());
|
|
|