| Index: Source/modules/encoding/TextDecoder.h
|
| diff --git a/Source/modules/encoding/TextDecoder.h b/Source/modules/encoding/TextDecoder.h
|
| index 3c0310f1f83ba30f37a3c82b2aa53b512ddd68c2..d03128be6ea19f0b5bc46a67b9bd29dc6e62379b 100644
|
| --- a/Source/modules/encoding/TextDecoder.h
|
| +++ b/Source/modules/encoding/TextDecoder.h
|
| @@ -56,11 +56,12 @@ public:
|
| void trace(Visitor*) { }
|
|
|
| private:
|
| - TextDecoder(const WTF::TextEncoding&, bool fatal);
|
| + TextDecoder(const WTF::TextEncoding&, bool fatal, bool ignoreBOM);
|
|
|
| WTF::TextEncoding m_encoding;
|
| OwnPtr<WTF::TextCodec> m_codec;
|
| bool m_fatal;
|
| + bool m_ignoreBOM;
|
| bool m_bomSeen;
|
| };
|
|
|
|
|