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

Unified Diff: sky/engine/core/html/parser/HTMLTreeBuilder.h

Issue 871383002: Merge HTMLDocument into Document (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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.cpp ('k') | sky/engine/core/html/parser/HTMLTreeBuilder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/html/parser/HTMLTreeBuilder.h
diff --git a/sky/engine/core/html/parser/HTMLTreeBuilder.h b/sky/engine/core/html/parser/HTMLTreeBuilder.h
index 5757ca3a7e4a751c3b7118b38ad8ab560a06294c..cefffa85899c7896cc9a225bc2b703b4c483de62 100644
--- a/sky/engine/core/html/parser/HTMLTreeBuilder.h
+++ b/sky/engine/core/html/parser/HTMLTreeBuilder.h
@@ -46,14 +46,13 @@ class DocumentFragment;
class Element;
class LocalFrame;
class HTMLToken;
-class HTMLDocument;
class Node;
class HTMLDocumentParser;
class HTMLTreeBuilder final {
WTF_MAKE_NONCOPYABLE(HTMLTreeBuilder); WTF_MAKE_FAST_ALLOCATED;
public:
- static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, HTMLDocument* document, bool reportErrors)
+ static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, Document* document, bool reportErrors)
{
return adoptPtr(new HTMLTreeBuilder(parser, document, reportErrors));
}
@@ -86,7 +85,7 @@ private:
TextMode,
};
- HTMLTreeBuilder(HTMLDocumentParser*, HTMLDocument*, bool reportErrors);
+ HTMLTreeBuilder(HTMLDocumentParser*, Document*, bool reportErrors);
void processStartTag(AtomicHTMLToken*);
void processEndTag(AtomicHTMLToken*);
« no previous file with comments | « sky/engine/core/html/parser/HTMLDocumentParser.cpp ('k') | sky/engine/core/html/parser/HTMLTreeBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698