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

Unified Diff: Source/core/fileapi/FileReader.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/dom/DOMArrayBuffer.h ('k') | Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileReader.h
diff --git a/Source/core/fileapi/FileReader.h b/Source/core/fileapi/FileReader.h
index 4da00065482d63c2a5ca7cc12fa46e98db98c4a2..002f083f15a070e40dd4e5efbaab952d905cce46 100644
--- a/Source/core/fileapi/FileReader.h
+++ b/Source/core/fileapi/FileReader.h
@@ -44,6 +44,7 @@
namespace blink {
class Blob;
+class DOMArrayBuffer;
class ExceptionState;
class ExecutionContext;
@@ -74,7 +75,7 @@ public:
ReadyState readyState() const { return m_state; }
FileError* error() { return m_error; }
FileReaderLoader::ReadType readType() const { return m_readType; }
- PassRefPtr<ArrayBuffer> arrayBufferResult() const;
+ PassRefPtr<DOMArrayBuffer> arrayBufferResult() const;
String stringResult();
// ActiveDOMObject
« no previous file with comments | « Source/core/dom/DOMArrayBuffer.h ('k') | Source/core/fileapi/FileReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698