| Index: third_party/WebKit/Source/wtf/text/TextCodecReplacement.h
|
| diff --git a/third_party/WebKit/Source/wtf/text/TextCodecReplacement.h b/third_party/WebKit/Source/wtf/text/TextCodecReplacement.h
|
| index 9350983b173970037a2f96693219bf6eaaa919ba..a96a07269a667a5dfa10fadffb8ee7713070cdc2 100644
|
| --- a/third_party/WebKit/Source/wtf/text/TextCodecReplacement.h
|
| +++ b/third_party/WebKit/Source/wtf/text/TextCodecReplacement.h
|
| @@ -11,18 +11,22 @@
|
| namespace WTF {
|
|
|
| class TextCodecReplacement final : public TextCodecUTF8 {
|
| -public:
|
| - TextCodecReplacement();
|
| + public:
|
| + TextCodecReplacement();
|
|
|
| - static void registerEncodingNames(EncodingNameRegistrar);
|
| - static void registerCodecs(TextCodecRegistrar);
|
| + static void registerEncodingNames(EncodingNameRegistrar);
|
| + static void registerCodecs(TextCodecRegistrar);
|
|
|
| -private:
|
| - String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
|
| + private:
|
| + String decode(const char*,
|
| + size_t length,
|
| + FlushBehavior,
|
| + bool stopOnError,
|
| + bool& sawError) override;
|
|
|
| - bool m_sentEOF;
|
| + bool m_sentEOF;
|
| };
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|
| -#endif // TextCodecReplacement_h
|
| +#endif // TextCodecReplacement_h
|
|
|