Chromium Code Reviews| Index: Source/core/dom/CompositorProxy.h |
| diff --git a/Source/core/dom/CompositorProxy.h b/Source/core/dom/CompositorProxy.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b8500cd0ca1167559fee504681d04cab07e63305 |
| --- /dev/null |
| +++ b/Source/core/dom/CompositorProxy.h |
| @@ -0,0 +1,52 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CompositorProxy_h |
| +#define CompositorProxy_h |
| + |
| +#include "bindings/core/v8/ScriptWrappable.h" |
| +#include "core/dom/Element.h" |
| +#include "platform/heap/Handle.h" |
| +#include "wtf/PassOwnPtr.h" |
| +#include "wtf/PassRefPtr.h" |
| +#include "wtf/RefCounted.h" |
| +#include "wtf/text/WTFString.h" |
| + |
| +namespace blink { |
| + |
| +class ExceptionState; |
| +class ExecutionContext; |
| + |
| +class CompositorProxy : public GarbageCollectedFinalized<CompositorProxy>, public ScriptWrappable { |
|
esprehn
2015/03/25 23:21:48
final
sadrul
2015/03/27 17:23:28
Done.
|
| + DEFINE_WRAPPERTYPEINFO(); |
| +public: |
| + static CompositorProxy* create(ExecutionContext*, Element*, Vector<String>& attributeArray, ExceptionState&); |
| + static CompositorProxy* create(uint64_t element, uint32_t attributeFlags); |
| + virtual ~CompositorProxy(); |
| + |
| + enum class Attributes { |
| + NONE = 0x0000, |
| + OPACITY = 0x0001, |
| + SCROLL_TOP = 0x0002, |
| + TOUCH = 0x0004, |
| + TRANSFORM = 0x0008, |
|
esprehn
2015/03/25 23:21:48
1 << 1,
1 << 2,
is preferred in blink.
sadrul
2015/03/27 17:23:28
Done.
|
| + }; |
| + |
| + DEFINE_INLINE_TRACE() { } |
| + |
| + uint64_t elementId() const { return m_elementId; } |
| + uint32_t attributes() const { return m_attributes; } |
|
esprehn
2015/03/25 23:21:48
Can this be a bitfield instead?
sadrul
2015/03/27 17:23:28
I am not entirely sure I understand. Do you mean s
sadrul
2015/03/27 18:14:56
I have gone ahead and made this change. PTAL.
|
| + |
| +protected: |
| + CompositorProxy(Element*, uint32_t attributeFlags); |
|
esprehn
2015/03/25 23:21:48
reference
sadrul
2015/03/27 17:23:29
Done.
|
| + CompositorProxy(uint64_t element, uint32_t attributeFlags); |
| + |
| +private: |
| + const uint64_t m_elementId; |
| + uint32_t m_attributes; |
|
esprehn
2015/03/25 23:21:48
const? Attributes doesn't seem to be able to chang
sadrul
2015/03/27 17:23:29
Done.
|
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // CompositorProxy_h |