OLD | NEW |
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 Loading... |
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 |
OLD | NEW |