Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(544)

Unified Diff: Source/core/fileapi/FileReaderLoader.h

Issue 711763002: bindings: Transition from ArrayBuffer to DOMArrayBuffer, part 2 (2nd round) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixes Win x64 build. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/fileapi/FileReader.cpp ('k') | Source/core/fileapi/FileReaderLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileReaderLoader.h
diff --git a/Source/core/fileapi/FileReaderLoader.h b/Source/core/fileapi/FileReaderLoader.h
index a81c4c4f6ae8fe9ccd8dcd533fca45f1907db4ed..0529ba76b97933dc84f9678f0c43f6c208ac596e 100644
--- a/Source/core/fileapi/FileReaderLoader.h
+++ b/Source/core/fileapi/FileReaderLoader.h
@@ -34,7 +34,6 @@
#include "core/fileapi/FileError.h"
#include "core/loader/ThreadableLoaderClient.h"
#include "platform/weborigin/KURL.h"
-#include "wtf/ArrayBuffer.h"
#include "wtf/ArrayBufferBuilder.h"
#include "wtf/Forward.h"
#include "wtf/OwnPtr.h"
@@ -44,8 +43,9 @@
namespace blink {
class BlobDataHandle;
-class FileReaderLoaderClient;
+class DOMArrayBuffer;
class ExecutionContext;
+class FileReaderLoaderClient;
class Stream;
class TextResourceDecoder;
class ThreadableLoader;
@@ -76,7 +76,7 @@ public:
virtual void didFail(const ResourceError&) override;
String stringResult();
- PassRefPtr<ArrayBuffer> arrayBufferResult() const;
+ PassRefPtr<DOMArrayBuffer> arrayBufferResult() const;
// Returns the total bytes received. Bytes ignored by m_rawData won't be
// counted.
« no previous file with comments | « Source/core/fileapi/FileReader.cpp ('k') | Source/core/fileapi/FileReaderLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698