diff options
Diffstat (limited to '')
-rw-r--r-- | gfx/layers/ipc/APZInputBridgeParent.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gfx/layers/ipc/APZInputBridgeParent.h b/gfx/layers/ipc/APZInputBridgeParent.h index 71f43d092b..62e6427bb5 100644 --- a/gfx/layers/ipc/APZInputBridgeParent.h +++ b/gfx/layers/ipc/APZInputBridgeParent.h @@ -18,7 +18,7 @@ class APZInputBridgeParent : public PAPZInputBridgeParent { NS_INLINE_DECL_REFCOUNTING(APZInputBridgeParent, final) public: - static RefPtr<APZInputBridgeParent> Create( + static APZInputBridgeParent* Create( const LayersId& aLayersId, Endpoint<PAPZInputBridgeParent>&& aEndpoint); mozilla::ipc::IPCResult RecvReceiveMultiTouchInputEvent( @@ -67,6 +67,7 @@ class APZInputBridgeParent : public PAPZInputBridgeParent { private: RefPtr<IAPZCTreeManager> mTreeManager; + LayersId mLayersId; }; } // namespace layers |