tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

log.sys.mjs (469B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 import { RootBiDiModule } from "chrome://remote/content/webdriver-bidi/modules/RootBiDiModule.sys.mjs";
      6 
      7 class LogModule extends RootBiDiModule {
      8  destroy() {}
      9 
     10  static get supportedEvents() {
     11    return ["log.entryAdded"];
     12  }
     13 }
     14 
     15 export const log = LogModule;