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

Unified Diff: Source/core/dom/custom/CustomElementMicrotaskImportStep.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/CustomElementMicrotaskImportStep.h
diff --git a/Source/core/dom/custom/CustomElementMicrotaskImportStep.h b/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
index df7afa2dfb6b3530d432c579e106675f1768f7f9..e002356ad780d36b04c18605ec7d53e06ed46b86 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
+++ b/Source/core/dom/custom/CustomElementMicrotaskImportStep.h
@@ -41,7 +41,7 @@
namespace WebCore {
-class CustomElementMicrotaskQueue;
+class CustomElementSyncMicrotaskQueue;
class HTMLImportChild;
// Processes the Custom Elements in an HTML Import. This is a
@@ -81,7 +81,7 @@ private:
#if !ENABLE(OILPAN)
WeakPtrFactory<CustomElementMicrotaskImportStep> m_weakFactory;
#endif
- RefPtrWillBeMember<CustomElementMicrotaskQueue> m_queue;
+ RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_queue;
};
}

Powered by Google App Engine
This is Rietveld 408576698