From e658f2346a7d0ed621c00b15e19d3e1608928949 Mon Sep 17 00:00:00 2001 From: Dorel Luca Date: Mon, 21 Jan 2019 02:47:16 +0200 Subject: [PATCH] Backed out changeset 4b6549b8a601 (bug 1521385) for Android build bustage --- toolkit/modules/ActorChild.jsm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toolkit/modules/ActorChild.jsm b/toolkit/modules/ActorChild.jsm index 4f104523adb6..27576747aea1 100644 --- a/toolkit/modules/ActorChild.jsm +++ b/toolkit/modules/ActorChild.jsm @@ -16,7 +16,7 @@ var EXPORTED_SYMBOLS = ["ActorChild"]; * the `content` property of this class will be bound to a specific subframe. * Otherwise, the `content` is always the top-level content tied to the `mm`. */ -this.ActorChild = class ActorChild { +class ActorChild { constructor(dispatcher) { this._dispatcher = dispatcher; this.mm = dispatcher.mm; @@ -47,4 +47,4 @@ this.ActorChild = class ActorChild { cleanup() { this._dispatcher = null; } -}; +}