Backed out changeset 4b6549b8a601 (bug 1521385) for Android build bustage

This commit is contained in:
Dorel Luca 2019-01-21 02:47:16 +02:00
Родитель 71ded3b272
Коммит e658f2346a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;
}
};
}