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

Unified Diff: Source/core/dom/custom/CustomElementCallbackScheduler.h

Issue 106903007: Let unresolved custom element go through CustomElementCallbackQueue. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated test. Landing again. Created 7 years 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/custom/CustomElementCallbackScheduler.h
diff --git a/Source/core/dom/custom/CustomElementCallbackScheduler.h b/Source/core/dom/custom/CustomElementCallbackScheduler.h
index 741ede220bf838d4388d446a005c0c2778433a5a..88f3b87a3df74c43b78f8efea882a529e2eabe02 100644
--- a/Source/core/dom/custom/CustomElementCallbackScheduler.h
+++ b/Source/core/dom/custom/CustomElementCallbackScheduler.h
@@ -39,15 +39,17 @@
namespace WebCore {
+class CustomElementDescriptor;
class CustomElementLifecycleCallbacks;
+class CustomElementPendingImport;
class Element;
class CustomElementCallbackScheduler {
public:
static void scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
- static void scheduleCreatedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
static void scheduleAttachedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
static void scheduleDetachedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
+ static void scheduleResolutionStep(const CustomElementDescriptor&, PassRefPtr<Element>);
protected:
friend class CustomElementCallbackDispatcher;
« no previous file with comments | « Source/core/dom/custom/CustomElementCallbackQueue.h ('k') | Source/core/dom/custom/CustomElementCallbackScheduler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698