no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / remote / components / nsIRemoteAgent.idl
blob89d637bed22d0d43cbf9b16a8f3adc6f36a3fbe1
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/. */
5 #include "nsISupports.idl"
7 /**
8 * The Gecko remote agent is an RPC subsystem that exposes
9 * browser-internal interfaces and services to the surrounding
10 * system.
12 * Consumers, whether remote or browser-local, can interface with
13 * the browser through an assorted set of services ranging from
14 * document introspection and script evaluation, to instrumentation,
15 * user interaction simulation, and event subscription.
17 [scriptable, uuid(8f685a9d-8181-46d6-a71d-869289099c6d)]
18 interface nsIRemoteAgent : nsISupports
20 /**
21 * Address of the HTTP server under which the remote agent is reachable.
23 readonly attribute AString debuggerAddress;
25 /**
26 * Indicates whether the Remote Agent is running.
28 readonly attribute boolean running;
31 %{C++
32 #define NS_REMOTEAGENT_CONTRACTID "@mozilla.org/remote/agent;1"
33 #define NS_REMOTEAGENT_CID \
34 { 0x8f685a9d, 0x8181, 0x46d6, \
35 { 0xa7, 0x1d, x86, x92, x89, x09, x9c, x6d } }