Index: Source/modules/encoding/TextDecoder.h |
diff --git a/Source/modules/encoding/TextDecoder.h b/Source/modules/encoding/TextDecoder.h |
index acc940f6130f514195e0aca5c739c87fa6e9f10b..39098df66e94363fb8af63718e1fa30c6647ff32 100644 |
--- a/Source/modules/encoding/TextDecoder.h |
+++ b/Source/modules/encoding/TextDecoder.h |
@@ -35,13 +35,13 @@ |
#include "modules/encoding/TextDecodeOptions.h" |
#include "modules/encoding/TextDecoderOptions.h" |
#include "platform/heap/Handle.h" |
-#include "wtf/ArrayBufferView.h" |
#include "wtf/text/TextCodec.h" |
#include "wtf/text/TextEncoding.h" |
#include "wtf/text/WTFString.h" |
namespace blink { |
+class DOMArrayBufferView; |
class ExceptionState; |
class TextDecoder FINAL : public GarbageCollectedFinalized<TextDecoder>, public ScriptWrappable { |
@@ -54,7 +54,7 @@ public: |
String encoding() const; |
bool fatal() const { return m_fatal; } |
bool ignoreBOM() const { return m_ignoreBOM; } |
- String decode(ArrayBufferView*, const TextDecodeOptions&, ExceptionState&); |
+ String decode(DOMArrayBufferView*, const TextDecodeOptions&, ExceptionState&); |
String decode(ExceptionState&); |
void trace(Visitor*) { } |