Bumping manifests a=b2g-bump
[gecko.git] / layout / ipc / RenderFrameChild.cpp
blob2c1d62b1455e73873357c586a1970e1ca9ac6424
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: sw=2 ts=8 et :
3 */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #include "RenderFrameChild.h"
9 #include "mozilla/layers/LayerTransactionChild.h"
11 using mozilla::layers::PLayerTransactionChild;
12 using mozilla::layers::LayerTransactionChild;
14 namespace mozilla {
15 namespace layout {
17 void
18 RenderFrameChild::ActorDestroy(ActorDestroyReason why)
20 mWasDestroyed = true;
23 void
24 RenderFrameChild::Destroy()
26 if (mWasDestroyed) {
27 return;
30 Send__delete__(this);
31 // WARNING: |this| is dead, hands off
34 } // namespace layout
35 } // namespace mozilla