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

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 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 0311d05662332ee6d59398ba6557952b2ebc8cc2..ed4aa18d6e12cc5cce1aa2b8d6a11b7131f2d158 100644
--- a/Source/core/dom/custom/CustomElementCallbackScheduler.h
+++ b/Source/core/dom/custom/CustomElementCallbackScheduler.h
@@ -39,6 +39,7 @@
namespace WebCore {
+class CustomElementDescriptor;
class CustomElementLifecycleCallbacks;
class Element;
@@ -48,6 +49,7 @@ public:
static void scheduleCreatedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
static void scheduleEnteredViewCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
static void scheduleLeftViewCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
+ static void scheduleResolutionStep(const CustomElementDescriptor&, PassRefPtr<Element>);
protected:
friend class CustomElementCallbackDispatcher;

Powered by Google App Engine
This is Rietveld 408576698