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

Unified Diff: Source/core/html/parser/HTMLConstructionSite.h

Issue 14759017: callTheAdoptionAgency should work asynchronously (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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: Source/core/html/parser/HTMLConstructionSite.h
diff --git a/Source/core/html/parser/HTMLConstructionSite.h b/Source/core/html/parser/HTMLConstructionSite.h
index e541bd05591fd559ab21b87e380b9b2df4b56371..be6a2057462d964356558e56defcbaf98c440ed8 100644
--- a/Source/core/html/parser/HTMLConstructionSite.h
+++ b/Source/core/html/parser/HTMLConstructionSite.h
@@ -41,7 +41,9 @@ namespace WebCore {
struct HTMLConstructionSiteTask {
enum Operation {
Insert,
+ InsertAgain,
eseidel 2013/05/07 00:11:37 InsertHarder?
Reparent,
+ TakeAllChildren,
};
explicit HTMLConstructionSiteTask(Operation op)
@@ -108,6 +110,9 @@ public:
void insertHTMLBodyStartTagInBody(AtomicHTMLToken*);
void reparent(HTMLElementStack::ElementRecord* newParent, HTMLElementStack::ElementRecord* child);
+ void reparent(HTMLElementStack::ElementRecord* newParent, HTMLStackItem* child);
+ void insertAgain(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* child);
+ void takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent);
PassRefPtr<HTMLStackItem> createElementFromSavedToken(HTMLStackItem*);

Powered by Google App Engine
This is Rietveld 408576698