| Index: Source/modules/encoding/TextEncoder.h
|
| diff --git a/Source/modules/encoding/TextEncoder.h b/Source/modules/encoding/TextEncoder.h
|
| index 7103269eba39c07f26bf03bcbe4d6e64f6174743..4d30d999e2e16a10aa69cc2b075fd53f889075fb 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*) { }
|
|
|
|
|