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

Side by Side Diff: Source/core/dom/custom/CustomElementMicrotaskRunQueue.h

Issue 598593006: Remove forward declarations from Source/core/dom/custom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Nits Created 6 years, 2 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 unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h ('k') | Source/core/dom/custom/CustomElementMicrotaskStep.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698