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

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..87607076538e89608554e15389ecd924687ba60d 100644
--- a/Source/core/dom/custom/CustomElementCallbackScheduler.h
+++ b/Source/core/dom/custom/CustomElementCallbackScheduler.h
@@ -39,7 +39,9 @@
namespace WebCore {
+class CustomElementDescriptor;
class CustomElementLifecycleCallbacks;
+class CustomElementRegistrationContext;
dominicc (has gone to gerrit) 2013/12/18 08:46:41 Don't think this is needed any more.
Hajime Morrita 2013/12/19 05:06:59 Done.
class Element;
class CustomElementCallbackScheduler {
@@ -48,6 +50,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