| Index: Source/wtf/text/TextCodecUTF8.h
|
| diff --git a/Source/wtf/text/TextCodecUTF8.h b/Source/wtf/text/TextCodecUTF8.h
|
| index 98eb4932a52899c097d3910fd2fd70f36ff29c86..10a28cf7a6d7b0a86c63bfbee9bbd78e213dc8e7 100644
|
| --- a/Source/wtf/text/TextCodecUTF8.h
|
| +++ b/Source/wtf/text/TextCodecUTF8.h
|
| @@ -30,14 +30,16 @@
|
|
|
| namespace WTF {
|
|
|
| -class TextCodecUTF8 FINAL : public TextCodec {
|
| +class TextCodecUTF8 : public TextCodec {
|
| public:
|
| static void registerEncodingNames(EncodingNameRegistrar);
|
| static void registerCodecs(TextCodecRegistrar);
|
|
|
| +protected:
|
| + TextCodecUTF8() : m_partialSequenceSize(0) { }
|
| +
|
| private:
|
| static PassOwnPtr<TextCodec> create(const TextEncoding&, const void*);
|
| - TextCodecUTF8() : m_partialSequenceSize(0) { }
|
|
|
| virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
|
| virtual CString encode(const UChar*, size_t length, UnencodableHandling) OVERRIDE;
|
|
|