| Index: third_party/WebKit/Source/core/dom/DocumentParser.h
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentParser.h b/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| index 260050022a436967697d04c5b9696aa6c8ecd9f7..0c6a2fc130e455d7f38904eaef82ce3dc00e65dc 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentParser.h
|
| @@ -58,7 +58,8 @@ class CORE_EXPORT DocumentParser
|
| virtual TextResourceDecoder* decoder();
|
| virtual void setHasAppendedData() {}
|
|
|
| - // FIXME: append() should be private, but DocumentLoader and DOMPatchSupport uses it for now.
|
| + // FIXME: append() should be private, but DocumentLoader and DOMPatchSupport
|
| + // uses it for now.
|
| virtual void append(const String&) = 0;
|
|
|
| virtual void finish() = 0;
|
| @@ -74,8 +75,8 @@ class CORE_EXPORT DocumentParser
|
| bool isStopped() const { return m_state >= StoppedState; }
|
| bool isDetached() const { return m_state == DetachedState; }
|
|
|
| - // prepareToStop() is used when the EOF token is encountered and parsing is to be
|
| - // stopped normally.
|
| + // prepareToStop() is used when the EOF token is encountered and parsing is to
|
| + // be stopped normally.
|
| virtual void prepareToStopParsing();
|
|
|
| // stopParsing() is used when a load is canceled/stopped.
|
|
|