| Index: Source/core/html/parser/TextDocumentParser.h
|
| diff --git a/Source/core/html/parser/TextDocumentParser.h b/Source/core/html/parser/TextDocumentParser.h
|
| index eba5d07907e35b240b136bc0be6d6ff2569ea776..9134274bccb3390ff660289a1f491b6140173b0a 100644
|
| --- a/Source/core/html/parser/TextDocumentParser.h
|
| +++ b/Source/core/html/parser/TextDocumentParser.h
|
| @@ -30,7 +30,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class TextDocumentParser : public HTMLDocumentParser {
|
| +class TextDocumentParser FINAL : public HTMLDocumentParser {
|
| public:
|
| static PassRefPtr<TextDocumentParser> create(HTMLDocument* document)
|
| {
|
| @@ -41,7 +41,7 @@ public:
|
| private:
|
| explicit TextDocumentParser(HTMLDocument*);
|
|
|
| - virtual void appendBytes(const char*, size_t) OVERRIDE FINAL;
|
| + virtual void appendBytes(const char*, size_t) OVERRIDE;
|
| void insertFakePreElement();
|
|
|
| bool m_haveInsertedFakePreElement;
|
|
|