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

Unified Diff: sky/engine/core/html/parser/HTMLDocumentParser.cpp

Issue 675313003: Delete DecodedDataDocumentParser (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix includes Created 6 years, 2 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
« no previous file with comments | « sky/engine/core/html/parser/HTMLDocumentParser.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/html/parser/HTMLDocumentParser.cpp
diff --git a/sky/engine/core/html/parser/HTMLDocumentParser.cpp b/sky/engine/core/html/parser/HTMLDocumentParser.cpp
index ee6ebc93975ee041221e8f4ddd83b9df9fb38316..e885ec4a870720745a56fb66daccccc5712a0420 100644
--- a/sky/engine/core/html/parser/HTMLDocumentParser.cpp
+++ b/sky/engine/core/html/parser/HTMLDocumentParser.cpp
@@ -46,7 +46,7 @@
namespace blink {
HTMLDocumentParser::HTMLDocumentParser(HTMLDocument& document, bool reportErrors)
- : DecodedDataDocumentParser(document)
+ : DocumentParser(document)
, m_options(&document)
, m_treeBuilder(HTMLTreeBuilder::create(this, &document, reportErrors, m_options))
, m_parserScheduler(HTMLParserScheduler::create(this))
@@ -76,12 +76,6 @@ HTMLDocumentParser::~HTMLDocumentParser()
#endif
}
-void HTMLDocumentParser::trace(Visitor* visitor)
-{
- visitor->trace(m_treeBuilder);
- DecodedDataDocumentParser::trace(visitor);
-}
-
void HTMLDocumentParser::parse(mojo::ScopedDataPipeConsumerHandle source)
{
ASSERT(!isStopped());
« no previous file with comments | « sky/engine/core/html/parser/HTMLDocumentParser.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698