Add ContentAnalysisWasmRunner, a JS service that reads an extension with a WebAssembly DLP module, and compiles and runs it in a content process (via the new ContentAnalysisWasm actor pair). Differential Revision: https://phabricator.services.mozilla.com/D311325
11 lines
512 B
JavaScript
11 lines
512 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/. */
|
|
|
|
/**
|
|
* Parent-process half of the content-analysis WebAssembly runner actor. It is
|
|
* intentionally thin: ContentAnalysisWasmRunner obtains this actor via
|
|
* ChromeUtils.ensureHeadlessContentProcess + getActor and calls the child.
|
|
*/
|
|
export class ContentAnalysisWasmParent extends JSProcessActorParent {}
|