Files
Greg Stoll 11d28d4b24 Bug 2044490 part 2 - Add in-process WASM DLP runner service r=jmendez,dlp-reviewers,mkaply,handyman
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
2026-07-17 19:47:51 +00:00

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 {}