| Index: Source/modules/encoding/TextEncoder.h
|
| diff --git a/Source/modules/encoding/TextEncoder.h b/Source/modules/encoding/TextEncoder.h
|
| index 722e2865af24561a76b81672bbcdd83983771763..a023c75caa21a43aa8c3ec31b6fcf5e467144aa3 100644
|
| --- a/Source/modules/encoding/TextEncoder.h
|
| +++ b/Source/modules/encoding/TextEncoder.h
|
| @@ -32,9 +32,8 @@
|
| #define TextEncoder_h
|
|
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| +#include "core/dom/DOMTypedArray.h"
|
| #include "platform/heap/Handle.h"
|
| -#include "wtf/ArrayBufferView.h"
|
| -#include "wtf/Uint8Array.h"
|
| #include "wtf/text/TextCodec.h"
|
| #include "wtf/text/TextEncoding.h"
|
| #include "wtf/text/WTFString.h"
|
| @@ -51,7 +50,7 @@ public:
|
|
|
| // Implement the IDL
|
| String encoding() const;
|
| - PassRefPtr<Uint8Array> encode(const String&);
|
| + PassRefPtr<DOMUint8Array> encode(const String&);
|
|
|
| void trace(Visitor*) { }
|
|
|
|
|