| Index: Source/core/dom/CompositorProxy.h
|
| diff --git a/Source/core/dom/CompositorProxy.h b/Source/core/dom/CompositorProxy.h
|
| index e3d5379025e9a07f8bebc5200a9d8151e157470c..76a77528854946cd0dc179e31a96c7b2c117af1b 100644
|
| --- a/Source/core/dom/CompositorProxy.h
|
| +++ b/Source/core/dom/CompositorProxy.h
|
| @@ -45,6 +45,9 @@ public:
|
| uint32_t bitfieldsSupported() const { return m_bitfieldsSupported; }
|
| bool supports(const String& attribute) const;
|
|
|
| + bool connected() const { return m_connected; }
|
| + void disconnect();
|
| +
|
| double opacity(ExceptionState&) const;
|
| double scrollLeft(ExceptionState&) const;
|
| double scrollTop(ExceptionState&) const;
|
| @@ -70,6 +73,8 @@ private:
|
| double m_scrollLeft = 0;
|
| double m_scrollTop = 0;
|
| Member<DOMMatrix> m_transform;
|
| +
|
| + bool m_connected = true;
|
| };
|
|
|
| } // namespace blink
|
|
|