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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentParser.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/DocumentParser.h
diff --git a/third_party/WebKit/Source/core/dom/DocumentParser.h b/third_party/WebKit/Source/core/dom/DocumentParser.h
index b5ff387f057b2073addf4cd940e372f4a6f007cc..abbf48dfb2bb5dce061f5d5923df44ec3c76a015 100644
--- a/third_party/WebKit/Source/core/dom/DocumentParser.h
+++ b/third_party/WebKit/Source/core/dom/DocumentParser.h
@@ -61,11 +61,6 @@ public:
virtual void finish() = 0;
- // FIXME: processingData() is only used by DocumentLoader::isLoadingInAPISense
- // and is very unclear as to what it actually means. The LegacyHTMLDocumentParser
- // used to implement it.
- virtual bool processingData() const { return false; }
-
// document() will return 0 after detach() is called.
Document* document() const { ASSERT(m_document); return m_document; }

Powered by Google App Engine
This is Rietveld 408576698