summaryrefslogtreecommitdiffstats
path: root/layout/ipc/RenderFrameChild.h
diff options
context:
space:
mode:
Diffstat (limited to 'layout/ipc/RenderFrameChild.h')
-rw-r--r--layout/ipc/RenderFrameChild.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/ipc/RenderFrameChild.h b/layout/ipc/RenderFrameChild.h
new file mode 100644
index 000000000..059f54a65
--- /dev/null
+++ b/layout/ipc/RenderFrameChild.h
@@ -0,0 +1,33 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
+ * vim: sw=2 ts=8 et :
+ */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#ifndef mozilla_dom_RenderFrameChild_h
+#define mozilla_dom_RenderFrameChild_h
+
+#include "mozilla/layout/PRenderFrameChild.h"
+
+namespace mozilla {
+namespace layout {
+
+class RenderFrameChild : public PRenderFrameChild
+{
+public:
+ RenderFrameChild() : mWasDestroyed(false) {}
+ virtual ~RenderFrameChild() {}
+
+ void ActorDestroy(ActorDestroyReason why) override;
+
+ void Destroy();
+
+private:
+ bool mWasDestroyed;
+};
+
+} // namespace layout
+} // namespace mozilla
+
+#endif // mozilla_dom_RenderFrameChild_h