forked from mirrors/gecko-dev
35 lines
747 B
JavaScript
35 lines
747 B
JavaScript
/* 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/. */
|
|
|
|
import { Module } from "chrome://remote/content/shared/messagehandler/Module.sys.mjs";
|
|
|
|
class RootOnlyModule extends Module {
|
|
#sessionDataReceived;
|
|
|
|
constructor(messageHandler) {
|
|
super(messageHandler);
|
|
|
|
this.#sessionDataReceived = [];
|
|
}
|
|
|
|
destroy() {}
|
|
|
|
/**
|
|
* Commands
|
|
*/
|
|
|
|
getSessionDataReceived() {
|
|
return this.#sessionDataReceived;
|
|
}
|
|
|
|
testCommand(params = {}) {
|
|
return params;
|
|
}
|
|
|
|
_applySessionData(params) {
|
|
this.#sessionDataReceived.push(params);
|
|
}
|
|
}
|
|
|
|
export const rootOnly = RootOnlyModule;
|