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

Unified Diff: Source/core/dom/CustomElementRegistrationContext.h

Issue 23009004: Process Custom Elements in post-order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Less fragile. Created 7 years, 4 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/dom/CustomElementRegistrationContext.h
diff --git a/Source/core/dom/CustomElementRegistrationContext.h b/Source/core/dom/CustomElementRegistrationContext.h
index 64099d398594c316fdb4d1266dd7698c7caa5c40..810d26c4220b9d6b833c648341901d9eb788dfde 100644
--- a/Source/core/dom/CustomElementRegistrationContext.h
+++ b/Source/core/dom/CustomElementRegistrationContext.h
@@ -57,12 +57,9 @@ public:
void registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& type, ExceptionState&);
// Instance creation
- PassRefPtr<Element> createCustomTagElement(Document*, const QualifiedName&);
+ PassRefPtr<Element> createCustomTagElement(Document*, const QualifiedName&, bool byParser = false);
dglazkov 2013/08/14 20:22:34 Can we switch to use enums here?
static void setIsAttributeAndTypeExtension(Element*, const AtomicString& type);
- static void setTypeExtension(Element*, const AtomicString& type);
-
- // Instance lifecycle
- void customElementWasDestroyed(Element*);
+ static void setTypeExtension(Element*, const AtomicString& type, bool byParser = false);
protected:
CustomElementRegistrationContext() { }

Powered by Google App Engine
This is Rietveld 408576698