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

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

Issue 1866663002: Remove unnecessary includes from dom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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"
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698