| Index: third_party/WebKit/Source/core/dom/Document.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.h b/third_party/WebKit/Source/core/dom/Document.h
|
| index 23198e79ee8bf74abee0481dd7b1de00a42571bb..88e183f352f75dd9719e557e5ba4009468cf0d44 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.h
|
| +++ b/third_party/WebKit/Source/core/dom/Document.h
|
| @@ -956,11 +956,6 @@ public:
|
| void adjustFloatQuadsForScrollAndAbsoluteZoom(Vector<FloatQuad>&, LayoutObject&);
|
| void adjustFloatRectForScrollAndAbsoluteZoom(FloatRect&, LayoutObject&);
|
|
|
| - bool hasActiveParser();
|
| - unsigned activeParserCount() { return m_activeParserCount; }
|
| - void incrementActiveParserCount() { ++m_activeParserCount; }
|
| - void decrementActiveParserCount() { --m_activeParserCount; }
|
| -
|
| void setContextFeatures(ContextFeatures&);
|
| ContextFeatures& contextFeatures() const { return *m_contextFeatures; }
|
|
|
| @@ -1189,7 +1184,6 @@ private:
|
|
|
| PersistentWillBeMember<ResourceFetcher> m_fetcher;
|
| RefPtrWillBeMember<DocumentParser> m_parser;
|
| - unsigned m_activeParserCount;
|
| RefPtrWillBeMember<ContextFeatures> m_contextFeatures;
|
|
|
| bool m_wellFormed;
|
|
|