2019-06-19 21:23:04 +00:00
|
|
|
module electron.mojom;
|
2019-04-02 22:38:16 +00:00
|
|
|
|
2019-06-12 22:08:22 +00:00
|
|
|
import "mojo/public/mojom/base/string16.mojom";
|
2019-08-02 23:56:46 +00:00
|
|
|
import "ui/gfx/geometry/mojom/geometry.mojom";
|
2019-10-09 17:59:08 +00:00
|
|
|
import "third_party/blink/public/mojom/messaging/cloneable_message.mojom";
|
2019-04-02 22:38:16 +00:00
|
|
|
|
|
|
|
interface ElectronRenderer {
|
|
|
|
Message(
|
|
|
|
bool internal,
|
|
|
|
bool send_to_all,
|
|
|
|
string channel,
|
2019-10-09 17:59:08 +00:00
|
|
|
blink.mojom.CloneableMessage arguments,
|
2019-04-02 22:38:16 +00:00
|
|
|
int32 sender_id);
|
|
|
|
|
2019-06-13 06:42:21 +00:00
|
|
|
UpdateCrashpadPipeName(string pipe_name);
|
|
|
|
|
2019-10-09 17:59:08 +00:00
|
|
|
// This is an API specific to the "remote" module, and will ultimately be
|
|
|
|
// replaced by generic IPC once WeakRef is generally available.
|
|
|
|
[EnableIf=enable_remote_module]
|
|
|
|
DereferenceRemoteJSCallback(
|
|
|
|
string context_id,
|
|
|
|
int32 object_id);
|
|
|
|
|
2019-04-02 22:38:16 +00:00
|
|
|
TakeHeapSnapshot(handle file) => (bool success);
|
|
|
|
};
|
|
|
|
|
2019-06-12 22:08:22 +00:00
|
|
|
interface ElectronAutofillAgent {
|
|
|
|
AcceptDataListSuggestion(mojo_base.mojom.String16 value);
|
|
|
|
};
|
|
|
|
|
2019-08-19 20:13:24 +00:00
|
|
|
interface ElectronAutofillDriver {
|
|
|
|
ShowAutofillPopup(gfx.mojom.RectF bounds, array<mojo_base.mojom.String16> values, array<mojo_base.mojom.String16> labels);
|
|
|
|
HideAutofillPopup();
|
|
|
|
};
|
|
|
|
|
2019-06-03 17:43:04 +00:00
|
|
|
struct DraggableRegion {
|
|
|
|
bool draggable;
|
|
|
|
gfx.mojom.Rect bounds;
|
|
|
|
};
|
|
|
|
|
2019-04-02 22:38:16 +00:00
|
|
|
interface ElectronBrowser {
|
2019-04-03 21:22:23 +00:00
|
|
|
// Emits an event on |channel| from the ipcMain JavaScript object in the main
|
|
|
|
// process.
|
2019-04-02 22:38:16 +00:00
|
|
|
Message(
|
|
|
|
bool internal,
|
|
|
|
string channel,
|
2019-10-09 17:59:08 +00:00
|
|
|
blink.mojom.CloneableMessage arguments);
|
2019-04-02 22:38:16 +00:00
|
|
|
|
2019-05-31 17:25:19 +00:00
|
|
|
// Emits an event on |channel| from the ipcMain JavaScript object in the main
|
|
|
|
// process, and returns the response.
|
|
|
|
Invoke(
|
2019-08-23 22:45:50 +00:00
|
|
|
bool internal,
|
2019-05-31 17:25:19 +00:00
|
|
|
string channel,
|
2019-10-09 17:59:08 +00:00
|
|
|
blink.mojom.CloneableMessage arguments) => (blink.mojom.CloneableMessage result);
|
2019-05-31 17:25:19 +00:00
|
|
|
|
2019-04-03 21:22:23 +00:00
|
|
|
// Emits an event on |channel| from the ipcMain JavaScript object in the main
|
|
|
|
// process, and waits synchronously for a response.
|
|
|
|
//
|
2019-04-02 22:38:16 +00:00
|
|
|
// NB. this is not marked [Sync] because mojo synchronous methods can be
|
|
|
|
// reordered with respect to asynchronous methods on the same channel.
|
|
|
|
// Instead, callers can manually block on the response to this method.
|
|
|
|
MessageSync(
|
|
|
|
bool internal,
|
|
|
|
string channel,
|
2019-10-09 17:59:08 +00:00
|
|
|
blink.mojom.CloneableMessage arguments) => (blink.mojom.CloneableMessage result);
|
2019-04-03 21:22:23 +00:00
|
|
|
|
|
|
|
// Emits an event from the |ipcRenderer| JavaScript object in the target
|
|
|
|
// WebContents's main frame, specified by |web_contents_id|.
|
|
|
|
MessageTo(
|
|
|
|
bool internal,
|
|
|
|
bool send_to_all,
|
|
|
|
int32 web_contents_id,
|
|
|
|
string channel,
|
2019-10-09 17:59:08 +00:00
|
|
|
blink.mojom.CloneableMessage arguments);
|
2019-04-03 21:22:23 +00:00
|
|
|
|
|
|
|
MessageHost(
|
|
|
|
string channel,
|
2019-10-09 17:59:08 +00:00
|
|
|
blink.mojom.CloneableMessage arguments);
|
|
|
|
|
|
|
|
// This is an API specific to the "remote" module, and will ultimately be
|
|
|
|
// replaced by generic IPC once WeakRef is generally available.
|
|
|
|
[EnableIf=enable_remote_module]
|
|
|
|
DereferenceRemoteJSObject(
|
|
|
|
string context_id,
|
|
|
|
int32 object_id,
|
|
|
|
int32 ref_count);
|
2019-06-03 17:43:04 +00:00
|
|
|
|
|
|
|
UpdateDraggableRegions(
|
|
|
|
array<DraggableRegion> regions);
|
2019-06-04 01:18:23 +00:00
|
|
|
|
|
|
|
SetTemporaryZoomLevel(double zoom_level);
|
|
|
|
|
|
|
|
[Sync]
|
|
|
|
DoGetZoomLevel() => (double result);
|
2019-04-02 22:38:16 +00:00
|
|
|
};
|