| 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" | 9 #include "wtf/RefCounted.h" |
| 10 #include "wtf/WeakPtr.h" | 10 #include "wtf/WeakPtr.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 CustomElementMicrotaskRunQueue(); | 37 CustomElementMicrotaskRunQueue(); |
| 38 | 38 |
| 39 void dispatch(); | 39 void dispatch(); |
| 40 | 40 |
| 41 WeakPtrFactory<CustomElementMicrotaskRunQueue> m_weakFactory; | 41 WeakPtrFactory<CustomElementMicrotaskRunQueue> m_weakFactory; |
| 42 RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_syncQueue; | 42 RefPtrWillBeMember<CustomElementSyncMicrotaskQueue> m_syncQueue; |
| 43 RefPtrWillBeMember<CustomElementAsyncImportMicrotaskQueue> m_asyncQueue; | 43 RefPtrWillBeMember<CustomElementAsyncImportMicrotaskQueue> m_asyncQueue; |
| 44 bool m_dispatchIsPending; | 44 bool m_dispatchIsPending; |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 } | 47 } // namespace blink |
| 48 | 48 |
| 49 #endif | 49 #endif // CustomElementMicrotaskRunQueue_h |
| OLD | NEW |