| 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 "platform/heap/Handle.h" | 8 #include "platform/heap/Handle.h" |
| 9 #include "wtf/RefCounted.h" | |
| 10 #include "wtf/WeakPtr.h" | 9 #include "wtf/WeakPtr.h" |
| 11 | 10 |
| 12 namespace blink { | 11 namespace blink { |
| 13 | 12 |
| 14 class CustomElementSyncMicrotaskQueue; | 13 class CustomElementSyncMicrotaskQueue; |
| 15 class CustomElementAsyncImportMicrotaskQueue; | 14 class CustomElementAsyncImportMicrotaskQueue; |
| 16 class CustomElementMicrotaskStep; | 15 class CustomElementMicrotaskStep; |
| 17 class HTMLImportLoader; | 16 class HTMLImportLoader; |
| 18 | 17 |
| 19 class CustomElementMicrotaskRunQueue : public GarbageCollectedFinalized<CustomEl
ementMicrotaskRunQueue> { | 18 class CustomElementMicrotaskRunQueue : public GarbageCollectedFinalized<CustomEl
ementMicrotaskRunQueue> { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 35 Member<CustomElementAsyncImportMicrotaskQueue> m_asyncQueue; | 34 Member<CustomElementAsyncImportMicrotaskQueue> m_asyncQueue; |
| 36 bool m_dispatchIsPending; | 35 bool m_dispatchIsPending; |
| 37 #if !ENABLE(OILPAN) | 36 #if !ENABLE(OILPAN) |
| 38 WeakPtrFactory<CustomElementMicrotaskRunQueue> m_weakFactory; | 37 WeakPtrFactory<CustomElementMicrotaskRunQueue> m_weakFactory; |
| 39 #endif | 38 #endif |
| 40 }; | 39 }; |
| 41 | 40 |
| 42 } // namespace blink | 41 } // namespace blink |
| 43 | 42 |
| 44 #endif // CustomElementMicrotaskRunQueue_h | 43 #endif // CustomElementMicrotaskRunQueue_h |
| OLD | NEW |