| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index 8349ee4f96121efa831a341be8f872e2a9657922..ab98f4f5188773e0339f3a7d0d9104eb72565250 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -396,7 +396,6 @@ Document::Document(const DocumentInit& initializer, DocumentClassFlags documentC
|
| , m_frame(initializer.frame())
|
| , m_domWindow(m_frame ? m_frame->localDOMWindow() : 0)
|
| , m_importsController(initializer.importsController())
|
| - , m_activeParserCount(0)
|
| , m_contextFeatures(ContextFeatures::defaultSwitch())
|
| , m_wellFormed(false)
|
| , m_printing(false)
|
| @@ -5555,11 +5554,6 @@ bool Document::threadedParsingEnabledForTesting()
|
| return s_threadedParsingEnabledForTesting;
|
| }
|
|
|
| -bool Document::hasActiveParser()
|
| -{
|
| - return m_activeParserCount || (m_parser && m_parser->processingData());
|
| -}
|
| -
|
| void Document::setContextFeatures(ContextFeatures& features)
|
| {
|
| m_contextFeatures = PassRefPtrWillBeRawPtr<ContextFeatures>(features);
|
|
|