base-target-actor.js |
Type of target, a string of Targets.TYPES.
@return {string}
|
12109 |
content-process.js |
Target actor for all resources in a content process of Firefox (chrome sandboxes, frame
scripts, documents, etc.)
See devtools/docs/contributor/backend/actor-hierarchy.md for more details about all the targets.
|
8041 |
content-script.js |
Target actor for all Web Extension Content Scripts running against matching
web pages defined in the extension manifest.
They are running the same thread as the page (i.e. the main thread).
See devtools/docs/contributor/backend/actor-hierarchy.md for more details about all the targets.
|
4875 |
index.js |
|
429 |
moz.build |
|
550 |
parent-process.js |
Target actor for the entire parent process.
This actor extends WindowGlobalTargetActor.
See devtools/docs/contributor/backend/actor-hierarchy.md for more details about all the targets.
|
4892 |
session-data-processors |
|
|
target-actor-registry.sys.mjs |
Return the target actors matching the passed browser element id.
In some scenarios, the registry can have multiple target actors for a given
browserId (e.g. the regular DevTools content toolbox + DevTools WebExtensions targets).
@param {Object} sessionContext: The Session Context to help know what is debugged.
See devtools/server/actors/watcher/session-context.js
@param {String} connectionPrefix: DevToolsServerConnection's prefix, in order to select only actor
related to the same connection. i.e. the same client.
@returns {Array<TargetActor>}
|
3007 |
window-global.js |
eslint-disable no-throw-literal |
66463 |
worker.js |
Target actor for a worker in the content process.
@param {DevToolsServerConnection} conn: The connection to the client.
@param {WorkerGlobalScope} workerGlobal: The worker global.
@param {Object} workerDebuggerData: The worker debugger information
@param {String} workerDebuggerData.id: The worker debugger id
@param {String} workerDebuggerData.url: The worker debugger url
@param {String} workerDebuggerData.type: The worker debugger type
@param {Number?} workerDebuggerData.relatedDocumentInnerWindowId: (optional)
If the worker is spawned from a document, the innerWindowId of it.
@param {Boolean} workerDebuggerData.workerConsoleApiMessagesDispatchedToMainThread:
Value of the dom.worker.console.dispatch_events_to_main_thread pref
@param {Object} sessionContext: The Session Context to help know what is debugged.
See devtools/server/actors/watcher/session-context.js
|
5263 |