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

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

Issue 334253005: Custom Elements: Encapsulates Async and Sync Queues into one class. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 6 years, 6 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/custom/CustomElementMicrotaskDispatcher.h
diff --git a/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h b/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
index ae54007ba12ff36e6d829b75bac539ad9b8ade03..961074fd2427a1af33e64161b5349962e7aae166 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
+++ b/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
@@ -12,11 +12,10 @@
namespace WebCore {
-class CustomElementAsyncImportMicrotaskQueue;
class CustomElementCallbackQueue;
class CustomElementMicrotaskImportStep;
-class CustomElementMicrotaskQueue;
class CustomElementMicrotaskStep;
+class CustomElementMicrotaskStepDispatcher;
class HTMLImportLoader;
class CustomElementMicrotaskDispatcher FINAL : public NoBaseWillBeGarbageCollected<CustomElementMicrotaskDispatcher> {
@@ -58,8 +57,7 @@ private:
DispatchingCallbacks
} m_phase;
- RefPtrWillBeMember<CustomElementMicrotaskQueue> m_resolutionAndImports;
- RefPtrWillBeMember<CustomElementAsyncImportMicrotaskQueue> m_asyncImports;
+ RefPtrWillBeMember<CustomElementMicrotaskStepDispatcher> m_steps;
WillBeHeapVector<RawPtrWillBeMember<CustomElementCallbackQueue> > m_elements;
};

Powered by Google App Engine
This is Rietveld 408576698