Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Unified Diff: third_party/WebKit/Source/core/dom/Document.h

Issue 1823863002: Simplify parsing/loading state, attempt #2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698