| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CustomElementMicrotaskRunQueue_h | 5 #ifndef CustomElementMicrotaskRunQueue_h |
| 6 #define CustomElementMicrotaskRunQueue_h | 6 #define CustomElementMicrotaskRunQueue_h |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "platform/heap/Handle.h" | 9 #include "platform/heap/Handle.h" |
| 10 #include "wtf/RefCounted.h" | 10 #include "wtf/RefCounted.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class CustomElementSyncMicrotaskQueue; | 14 class CustomElementSyncMicrotaskQueue; |
| 15 class CustomElementAsyncImportMicrotaskQueue; | 15 class CustomElementAsyncImportMicrotaskQueue; |
| 16 class CustomElementMicrotaskStep; | 16 class CustomElementMicrotaskStep; |
| 17 class HTMLImportLoader; | 17 class HTMLImportLoader; |
| 18 | 18 |
| 19 class CustomElementMicrotaskRunQueue : public RefCountedWillBeGarbageCollectedFi
nalized<CustomElementMicrotaskRunQueue> { | 19 class CustomElementMicrotaskRunQueue : public RefCountedWillBeGarbageCollectedFi
nalized<CustomElementMicrotaskRunQueue> { |
| 20 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(CustomElementMicrotaskRunQueue) | 20 DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(CustomElementMicrotaskRunQueue) |
| 21 public: | 21 public: |
| 22 static PassRefPtrWillBeRawPtr<CustomElementMicrotaskRunQueue> create() { ret
urn adoptRefWillBeNoop(new CustomElementMicrotaskRunQueue()); } | 22 static PassRefPtrWillBeRawPtr<CustomElementMicrotaskRunQueue> create() { ret
urn adoptRefWillBeNoop(new CustomElementMicrotaskRunQueue()); } |
| 23 | 23 |
| 24 void enqueue(HTMLImportLoader* parentLoader, PassOwnPtrWillBeRawPtr<CustomEl
ementMicrotaskStep>, bool importIsSync); | 24 void enqueue(HTMLImportLoader* parentLoader, PassOwnPtrWillBeRawPtr<CustomEl
ementMicrotaskStep>, bool importIsSync); |
| 25 void requestDispatchIfNeeded(); | 25 void requestDispatchIfNeeded(); |
| 26 bool isEmpty() const; | 26 bool isEmpty() const; |
| 27 | 27 |
| 28 void trace(Visitor*); | 28 void trace(Visitor*); |
| 29 | 29 |
| 30 #if !defined(NDEBUG) | |
| 31 void show(unsigned indent); | |
| 32 #endif | |
| 33 | |
| 34 private: | 30 private: |
| 35 CustomElementMicrotaskRunQueue(); | 31 CustomElementMicrotaskRunQueue(); |
| 36 | 32 |
| 37 void dispatch(); | 33 void dispatch(); |
| 38 | 34 |
| 39 RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_syncQueue; | 35 RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_syncQueue; |
| 40 RefPtrWillBeMember<CustomElementAsyncImportMicrotaskQueue> m_asyncQueue; | 36 RefPtrWillBeMember<CustomElementAsyncImportMicrotaskQueue> m_asyncQueue; |
| 41 bool m_dispatchIsPending; | 37 bool m_dispatchIsPending; |
| 42 | 38 |
| 43 base::WeakPtrFactory<CustomElementMicrotaskRunQueue> m_weakFactory; | 39 base::WeakPtrFactory<CustomElementMicrotaskRunQueue> m_weakFactory; |
| 44 }; | 40 }; |
| 45 | 41 |
| 46 } | 42 } |
| 47 | 43 |
| 48 #endif | 44 #endif |
| OLD | NEW |