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

Unified Diff: Source/core/html/imports/HTMLImportLoader.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/html/imports/HTMLImportLoader.h
diff --git a/Source/core/html/imports/HTMLImportLoader.h b/Source/core/html/imports/HTMLImportLoader.h
index 4ddb924abf493cde8b27c769081d8e03d8ca0738..45d05e38469e240b885affcf5d08b36656377af1 100644
--- a/Source/core/html/imports/HTMLImportLoader.h
+++ b/Source/core/html/imports/HTMLImportLoader.h
@@ -40,7 +40,7 @@
namespace WebCore {
-class CustomElementMicrotaskQueue;
+class CustomElementSyncMicrotaskQueue;
class Document;
class DocumentWriter;
class HTMLImportChild;
@@ -96,7 +96,7 @@ public:
// Called by Document::didRemoveAllPendingStylesheet.
void didRemoveAllPendingStylesheet();
- PassRefPtrWillBeRawPtr<CustomElementMicrotaskQueue> microtaskQueue() const;
+ PassRefPtrWillBeRawPtr<CustomElementSyncMicrotaskQueue> microtaskQueue() const;
virtual void trace(Visitor*);
@@ -125,7 +125,7 @@ private:
State m_state;
RefPtrWillBeMember<Document> m_document;
RefPtrWillBeMember<DocumentWriter> m_writer;
- RefPtrWillBeMember<CustomElementMicrotaskQueue> m_microtaskQueue;
+ RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_microtaskQueue;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698