ShellTarget; } get name() { // @backward-compat { version 87 } We now have `remoteType` attribute. if (this.remoteType) { return `(pid ${this.processID}) ${this.remoteType.replace( "webIsolated=", "" )}`; } return `(pid ${this.processID}) Content Process`; } reconfigure() { // Toolbox and options panel are calling this method but Worker Target can't be // reconfigured. So we ignore this call here. return Promise.resolve(); } } exports.ContentProcessTargetFront = ContentProcessTargetFront; registerFront(exports.ContentProcessTargetFront); PK