2019-04-02 15:38:16 -07:00
|
|
|
module electron.mojom;
|
|
|
|
|
2019-06-12 15:08:22 -07:00
|
|
|
import "mojo/public/mojom/base/string16.mojom";
|
2019-08-02 16:56:46 -07:00
|
|
|
import "ui/gfx/geometry/mojom/geometry.mojom";
|
2019-10-09 10:59:08 -07:00
|
|
|
import "third_party/blink/public/mojom/messaging/cloneable_message.mojom";
|
2020-03-11 18:07:54 -07:00
|
|
|
import "third_party/blink/public/mojom/messaging/transferable_message.mojom";
|
2019-04-02 15:38:16 -07:00
|
|
|
|
|
|
|
interface ElectronRenderer {
|
|
|
|
Message(
|
|
|
|
bool internal,
|
|
|
|
string channel,
|
2019-10-09 10:59:08 -07:00
|
|
|
blink.mojom.CloneableMessage arguments,
|
2019-04-02 15:38:16 -07:00
|
|
|
int32 sender_id);
|
|
|
|
|
2020-03-11 18:07:54 -07:00
|
|
|
ReceivePostMessage(string channel, blink.mojom.TransferableMessage message);
|
|
|
|
|
2019-04-02 15:38:16 -07:00
|
|
|
TakeHeapSnapshot(handle file) => (bool success);
|
|
|
|
};
|
|
|
|
|
2019-06-12 15:08:22 -07:00
|
|
|
interface ElectronAutofillAgent {
|
|
|
|
AcceptDataListSuggestion(mojo_base.mojom.String16 value);
|
|
|
|
};
|
|
|
|
|
2019-08-19 22:13:24 +02:00
|
|
|
interface ElectronAutofillDriver {
|
|
|
|
ShowAutofillPopup(gfx.mojom.RectF bounds, array<mojo_base.mojom.String16> values, array<mojo_base.mojom.String16> labels);
|
|
|
|
HideAutofillPopup();
|
|
|
|
};
|
|
|
|
|
2019-06-03 10:43:04 -07:00
|
|
|
struct DraggableRegion {
|
|
|
|
bool draggable;
|
|
|
|
gfx.mojom.Rect bounds;
|
|
|
|
};
|
|
|
|
|
2022-03-18 19:50:05 -07:00
|
|
|
interface ElectronWebContentsUtility {
|
|
|
|
// Informs underlying WebContents that first non-empty layout was performed
|
|
|
|
// by compositor.
|
|
|
|
OnFirstNonEmptyLayout();
|
|
|
|
|
|
|
|
UpdateDraggableRegions(
|
|
|
|
array<DraggableRegion> regions);
|
|
|
|
|
|
|
|
SetTemporaryZoomLevel(double zoom_level);
|
|
|
|
|
|
|
|
[Sync]
|
|
|
|
DoGetZoomLevel() => (double result);
|
|
|
|
};
|
|
|
|
|
|
|
|
interface ElectronApiIPC {
|
2019-04-03 14:22:23 -07:00
|
|
|
// Emits an event on |channel| from the ipcMain JavaScript object in the main
|
|
|
|
// process.
|
2019-04-02 15:38:16 -07:00
|
|
|
Message(
|
|
|
|
bool internal,
|
|
|
|
string channel,
|
2019-10-09 10:59:08 -07:00
|
|
|
blink.mojom.CloneableMessage arguments);
|
2019-04-02 15:38:16 -07:00
|
|
|
|
2019-05-31 10:25:19 -07:00
|
|
|
// Emits an event on |channel| from the ipcMain JavaScript object in the main
|
|
|
|
// process, and returns the response.
|
|
|
|
Invoke(
|
2019-08-24 00:45:50 +02:00
|
|
|
bool internal,
|
2019-05-31 10:25:19 -07:00
|
|
|
string channel,
|
2019-10-09 10:59:08 -07:00
|
|
|
blink.mojom.CloneableMessage arguments) => (blink.mojom.CloneableMessage result);
|
2019-05-31 10:25:19 -07:00
|
|
|
|
2020-03-11 18:07:54 -07:00
|
|
|
ReceivePostMessage(string channel, blink.mojom.TransferableMessage message);
|
|
|
|
|
2019-04-03 14:22:23 -07:00
|
|
|
// Emits an event on |channel| from the ipcMain JavaScript object in the main
|
|
|
|
// process, and waits synchronously for a response.
|
2019-12-17 11:35:28 -08:00
|
|
|
[Sync]
|
2019-04-02 15:38:16 -07:00
|
|
|
MessageSync(
|
|
|
|
bool internal,
|
|
|
|
string channel,
|
2019-10-09 10:59:08 -07:00
|
|
|
blink.mojom.CloneableMessage arguments) => (blink.mojom.CloneableMessage result);
|
2019-04-03 14:22:23 -07:00
|
|
|
|
|
|
|
// Emits an event from the |ipcRenderer| JavaScript object in the target
|
|
|
|
// WebContents's main frame, specified by |web_contents_id|.
|
|
|
|
MessageTo(
|
|
|
|
int32 web_contents_id,
|
|
|
|
string channel,
|
2019-10-09 10:59:08 -07:00
|
|
|
blink.mojom.CloneableMessage arguments);
|
2019-04-03 14:22:23 -07:00
|
|
|
|
|
|
|
MessageHost(
|
|
|
|
string channel,
|
2019-10-09 10:59:08 -07:00
|
|
|
blink.mojom.CloneableMessage arguments);
|
2019-04-02 15:38:16 -07:00
|
|
|
};
|