| Index: sky/engine/core/html/parser/HTMLConstructionSite.h
|
| diff --git a/sky/engine/core/html/parser/HTMLConstructionSite.h b/sky/engine/core/html/parser/HTMLConstructionSite.h
|
| index c2ae7ec44869a5c7ed25cd854178ced235d6b0f4..fdd81525df229110d47309ade626f89db3dd75b1 100644
|
| --- a/sky/engine/core/html/parser/HTMLConstructionSite.h
|
| +++ b/sky/engine/core/html/parser/HTMLConstructionSite.h
|
| @@ -28,7 +28,6 @@
|
| #define HTMLConstructionSite_h
|
|
|
| #include "core/dom/Document.h"
|
| -#include "core/dom/ParserContentPolicy.h"
|
| #include "core/html/parser/HTMLElementStack.h"
|
| #include "wtf/Noncopyable.h"
|
| #include "wtf/PassRefPtr.h"
|
| @@ -88,8 +87,8 @@ class HTMLConstructionSite FINAL {
|
| WTF_MAKE_NONCOPYABLE(HTMLConstructionSite);
|
| DISALLOW_ALLOCATION();
|
| public:
|
| - HTMLConstructionSite(Document*, ParserContentPolicy);
|
| - HTMLConstructionSite(DocumentFragment*, ParserContentPolicy);
|
| + explicit HTMLConstructionSite(Document*);
|
| + explicit HTMLConstructionSite(DocumentFragment*);
|
| ~HTMLConstructionSite();
|
| void trace(Visitor*);
|
|
|
| @@ -131,8 +130,6 @@ public:
|
| Document& ownerDocumentForCurrentNode();
|
| HTMLElementStack* openElements() const { return &m_openElements; }
|
|
|
| - ParserContentPolicy parserContentPolicy() { return m_parserContentPolicy; }
|
| -
|
| private:
|
| // In the common case, this queue will have only one task because most
|
| // tokens produce only one DOM mutation.
|
| @@ -206,8 +203,6 @@ private:
|
| };
|
|
|
| PendingText m_pendingText;
|
| -
|
| - ParserContentPolicy m_parserContentPolicy;
|
| };
|
|
|
| } // namespace blink
|
|
|