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

Side by Side Diff: third_party/WebKit/Source/core/dom/CompositorProxy.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 CompositorProxy_h 5 #ifndef CompositorProxy_h
6 #define CompositorProxy_h 6 #define CompositorProxy_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "core/dom/DOMMatrix.h" 9 #include "core/dom/DOMMatrix.h"
10 #include "core/dom/Element.h" 10 #include "core/dom/Element.h"
11 #include "platform/heap/Handle.h" 11 #include "platform/heap/Handle.h"
12 #include "wtf/PassOwnPtr.h"
13 #include "wtf/PassRefPtr.h"
14 #include "wtf/RefCounted.h"
15 #include "wtf/text/WTFString.h" 12 #include "wtf/text/WTFString.h"
16 13
17 namespace blink { 14 namespace blink {
18 15
19 class DOMMatrix; 16 class DOMMatrix;
20 class ExceptionState; 17 class ExceptionState;
21 class ExecutionContext; 18 class ExecutionContext;
22 19
23 class CompositorProxy final : public GarbageCollectedFinalized<CompositorProxy>, public ScriptWrappable { 20 class CompositorProxy final : public GarbageCollectedFinalized<CompositorProxy>, public ScriptWrappable {
24 DEFINE_WRAPPERTYPEINFO(); 21 DEFINE_WRAPPERTYPEINFO();
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 double m_scrollLeft = 0; 61 double m_scrollLeft = 0;
65 double m_scrollTop = 0; 62 double m_scrollTop = 0;
66 Member<DOMMatrix> m_transform; 63 Member<DOMMatrix> m_transform;
67 64
68 bool m_connected = true; 65 bool m_connected = true;
69 }; 66 };
70 67
71 } // namespace blink 68 } // namespace blink
72 69
73 #endif // CompositorProxy_h 70 #endif // CompositorProxy_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ChildNodeList.h ('k') | third_party/WebKit/Source/core/dom/CrossThreadTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698