chore: remove unused sendToAll + related APIs (#26771)
* chore: remove unused sendToAll + related APIs * refactor: no need to args.ShallowClone() anymore
This commit is contained in:
parent
8eee9d1290
commit
b37982987a
12 changed files with 23 additions and 94 deletions
|
@ -131,10 +131,7 @@ WebContents.prototype.send = function (channel, ...args) {
|
||||||
throw new Error('Missing required channel argument');
|
throw new Error('Missing required channel argument');
|
||||||
}
|
}
|
||||||
|
|
||||||
const internal = false;
|
return this._send(false /* internal */, channel, args);
|
||||||
const sendToAll = false;
|
|
||||||
|
|
||||||
return this._send(internal, sendToAll, channel, args);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
WebContents.prototype.postMessage = function (...args) {
|
WebContents.prototype.postMessage = function (...args) {
|
||||||
|
@ -149,20 +146,7 @@ WebContents.prototype._sendInternal = function (channel, ...args) {
|
||||||
throw new Error('Missing required channel argument');
|
throw new Error('Missing required channel argument');
|
||||||
}
|
}
|
||||||
|
|
||||||
const internal = true;
|
return this._send(true /* internal */, channel, args);
|
||||||
const sendToAll = false;
|
|
||||||
|
|
||||||
return this._send(internal, sendToAll, channel, args);
|
|
||||||
};
|
|
||||||
WebContents.prototype._sendInternalToAll = function (channel, ...args) {
|
|
||||||
if (typeof channel !== 'string') {
|
|
||||||
throw new Error('Missing required channel argument');
|
|
||||||
}
|
|
||||||
|
|
||||||
const internal = true;
|
|
||||||
const sendToAll = true;
|
|
||||||
|
|
||||||
return this._send(internal, sendToAll, channel, args);
|
|
||||||
};
|
};
|
||||||
WebContents.prototype.sendToFrame = function (frameId, channel, ...args) {
|
WebContents.prototype.sendToFrame = function (frameId, channel, ...args) {
|
||||||
if (typeof channel !== 'string') {
|
if (typeof channel !== 'string') {
|
||||||
|
@ -171,10 +155,7 @@ WebContents.prototype.sendToFrame = function (frameId, channel, ...args) {
|
||||||
throw new Error('Missing required frameId argument');
|
throw new Error('Missing required frameId argument');
|
||||||
}
|
}
|
||||||
|
|
||||||
const internal = false;
|
return this._sendToFrame(false /* internal */, frameId, channel, args);
|
||||||
const sendToAll = false;
|
|
||||||
|
|
||||||
return this._sendToFrame(internal, sendToAll, frameId, channel, args);
|
|
||||||
};
|
};
|
||||||
WebContents.prototype._sendToFrameInternal = function (frameId, channel, ...args) {
|
WebContents.prototype._sendToFrameInternal = function (frameId, channel, ...args) {
|
||||||
if (typeof channel !== 'string') {
|
if (typeof channel !== 'string') {
|
||||||
|
@ -183,10 +164,7 @@ WebContents.prototype._sendToFrameInternal = function (frameId, channel, ...args
|
||||||
throw new Error('Missing required frameId argument');
|
throw new Error('Missing required frameId argument');
|
||||||
}
|
}
|
||||||
|
|
||||||
const internal = true;
|
return this._sendToFrame(true /* internal */, frameId, channel, args);
|
||||||
const sendToAll = false;
|
|
||||||
|
|
||||||
return this._sendToFrame(internal, sendToAll, frameId, channel, args);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Following methods are mapped to webFrame.
|
// Following methods are mapped to webFrame.
|
||||||
|
@ -199,7 +177,7 @@ const webFrameMethods = [
|
||||||
|
|
||||||
for (const method of webFrameMethods) {
|
for (const method of webFrameMethods) {
|
||||||
WebContents.prototype[method] = function (...args: any[]): Promise<any> {
|
WebContents.prototype[method] = function (...args: any[]): Promise<any> {
|
||||||
return ipcMainUtils.invokeInWebContents(this, false, IPC_MESSAGES.RENDERER_WEB_FRAME_METHOD, method, ...args);
|
return ipcMainUtils.invokeInWebContents(this, IPC_MESSAGES.RENDERER_WEB_FRAME_METHOD, method, ...args);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -217,11 +195,11 @@ const waitTillCanExecuteJavaScript = async (webContents: Electron.WebContents) =
|
||||||
// WebContents has been loaded.
|
// WebContents has been loaded.
|
||||||
WebContents.prototype.executeJavaScript = async function (code, hasUserGesture) {
|
WebContents.prototype.executeJavaScript = async function (code, hasUserGesture) {
|
||||||
await waitTillCanExecuteJavaScript(this);
|
await waitTillCanExecuteJavaScript(this);
|
||||||
return ipcMainUtils.invokeInWebContents(this, false, IPC_MESSAGES.RENDERER_WEB_FRAME_METHOD, 'executeJavaScript', String(code), !!hasUserGesture);
|
return ipcMainUtils.invokeInWebContents(this, IPC_MESSAGES.RENDERER_WEB_FRAME_METHOD, 'executeJavaScript', String(code), !!hasUserGesture);
|
||||||
};
|
};
|
||||||
WebContents.prototype.executeJavaScriptInIsolatedWorld = async function (worldId, code, hasUserGesture) {
|
WebContents.prototype.executeJavaScriptInIsolatedWorld = async function (worldId, code, hasUserGesture) {
|
||||||
await waitTillCanExecuteJavaScript(this);
|
await waitTillCanExecuteJavaScript(this);
|
||||||
return ipcMainUtils.invokeInWebContents(this, false, IPC_MESSAGES.RENDERER_WEB_FRAME_METHOD, 'executeJavaScriptInIsolatedWorld', worldId, code, !!hasUserGesture);
|
return ipcMainUtils.invokeInWebContents(this, IPC_MESSAGES.RENDERER_WEB_FRAME_METHOD, 'executeJavaScriptInIsolatedWorld', worldId, code, !!hasUserGesture);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Translate the options of printToPDF.
|
// Translate the options of printToPDF.
|
||||||
|
|
|
@ -14,7 +14,7 @@ export const handleSync = function <T extends IPCHandler> (channel: string, hand
|
||||||
|
|
||||||
let nextId = 0;
|
let nextId = 0;
|
||||||
|
|
||||||
export function invokeInWebContents<T> (sender: Electron.WebContents, sendToAll: boolean, command: string, ...args: any[]) {
|
export function invokeInWebContents<T> (sender: Electron.WebContents, command: string, ...args: any[]) {
|
||||||
return new Promise<T>((resolve, reject) => {
|
return new Promise<T>((resolve, reject) => {
|
||||||
const requestId = ++nextId;
|
const requestId = ++nextId;
|
||||||
const channel = `${command}_RESPONSE_${requestId}`;
|
const channel = `${command}_RESPONSE_${requestId}`;
|
||||||
|
@ -33,10 +33,6 @@ export function invokeInWebContents<T> (sender: Electron.WebContents, sendToAll:
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (sendToAll) {
|
|
||||||
sender._sendInternalToAll(command, requestId, ...args);
|
|
||||||
} else {
|
|
||||||
sender._sendInternal(command, requestId, ...args);
|
sender._sendInternal(command, requestId, ...args);
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@ ipcRenderer.sendToHost = function (channel, ...args) {
|
||||||
};
|
};
|
||||||
|
|
||||||
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
|
ipcRenderer.sendTo = function (webContentsId, channel, ...args) {
|
||||||
return ipc.sendTo(internal, false, webContentsId, channel, args);
|
return ipc.sendTo(internal, webContentsId, channel, args);
|
||||||
};
|
};
|
||||||
|
|
||||||
ipcRenderer.invoke = async function (channel, ...args) {
|
ipcRenderer.invoke = async function (channel, ...args) {
|
||||||
|
|
|
@ -14,11 +14,7 @@ ipcRendererInternal.sendSync = function (channel, ...args) {
|
||||||
};
|
};
|
||||||
|
|
||||||
ipcRendererInternal.sendTo = function (webContentsId, channel, ...args) {
|
ipcRendererInternal.sendTo = function (webContentsId, channel, ...args) {
|
||||||
return ipc.sendTo(internal, false, webContentsId, channel, args);
|
return ipc.sendTo(internal, webContentsId, channel, args);
|
||||||
};
|
|
||||||
|
|
||||||
ipcRendererInternal.sendToAll = function (webContentsId, channel, ...args) {
|
|
||||||
return ipc.sendTo(internal, true, webContentsId, channel, args);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
ipcRendererInternal.invoke = async function<T> (channel: string, ...args: any[]) {
|
ipcRendererInternal.invoke = async function<T> (channel: string, ...args: any[]) {
|
||||||
|
|
|
@ -1577,7 +1577,6 @@ void WebContents::MessageSync(bool internal,
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebContents::MessageTo(bool internal,
|
void WebContents::MessageTo(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
int32_t web_contents_id,
|
int32_t web_contents_id,
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
blink::CloneableMessage arguments) {
|
blink::CloneableMessage arguments) {
|
||||||
|
@ -1585,7 +1584,7 @@ void WebContents::MessageTo(bool internal,
|
||||||
auto* web_contents = FromID(web_contents_id);
|
auto* web_contents = FromID(web_contents_id);
|
||||||
|
|
||||||
if (web_contents) {
|
if (web_contents) {
|
||||||
web_contents->SendIPCMessageWithSender(internal, send_to_all, channel,
|
web_contents->SendIPCMessageWithSender(internal, channel,
|
||||||
std::move(arguments), ID());
|
std::move(arguments), ID());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2685,7 +2684,6 @@ bool WebContents::IsFocused() const {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool WebContents::SendIPCMessage(bool internal,
|
bool WebContents::SendIPCMessage(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
v8::Local<v8::Value> args) {
|
v8::Local<v8::Value> args) {
|
||||||
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
|
||||||
|
@ -2695,37 +2693,21 @@ bool WebContents::SendIPCMessage(bool internal,
|
||||||
gin::StringToV8(isolate, "Failed to serialize arguments")));
|
gin::StringToV8(isolate, "Failed to serialize arguments")));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return SendIPCMessageWithSender(internal, send_to_all, channel,
|
return SendIPCMessageWithSender(internal, channel, std::move(message));
|
||||||
std::move(message));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WebContents::SendIPCMessageWithSender(bool internal,
|
bool WebContents::SendIPCMessageWithSender(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
blink::CloneableMessage args,
|
blink::CloneableMessage args,
|
||||||
int32_t sender_id) {
|
int32_t sender_id) {
|
||||||
std::vector<content::RenderFrameHost*> target_hosts;
|
|
||||||
if (!send_to_all) {
|
|
||||||
auto* frame_host = web_contents()->GetMainFrame();
|
auto* frame_host = web_contents()->GetMainFrame();
|
||||||
if (frame_host) {
|
|
||||||
target_hosts.push_back(frame_host);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
target_hosts = web_contents()->GetAllFrames();
|
|
||||||
}
|
|
||||||
|
|
||||||
for (auto* frame_host : target_hosts) {
|
|
||||||
mojo::AssociatedRemote<mojom::ElectronRenderer> electron_renderer;
|
mojo::AssociatedRemote<mojom::ElectronRenderer> electron_renderer;
|
||||||
frame_host->GetRemoteAssociatedInterfaces()->GetInterface(
|
frame_host->GetRemoteAssociatedInterfaces()->GetInterface(&electron_renderer);
|
||||||
&electron_renderer);
|
electron_renderer->Message(internal, channel, std::move(args), sender_id);
|
||||||
electron_renderer->Message(internal, false, channel, args.ShallowClone(),
|
|
||||||
sender_id);
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WebContents::SendIPCMessageToFrame(bool internal,
|
bool WebContents::SendIPCMessageToFrame(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
int32_t frame_id,
|
int32_t frame_id,
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
v8::Local<v8::Value> args) {
|
v8::Local<v8::Value> args) {
|
||||||
|
@ -2747,7 +2729,7 @@ bool WebContents::SendIPCMessageToFrame(bool internal,
|
||||||
|
|
||||||
mojo::AssociatedRemote<mojom::ElectronRenderer> electron_renderer;
|
mojo::AssociatedRemote<mojom::ElectronRenderer> electron_renderer;
|
||||||
(*iter)->GetRemoteAssociatedInterfaces()->GetInterface(&electron_renderer);
|
(*iter)->GetRemoteAssociatedInterfaces()->GetInterface(&electron_renderer);
|
||||||
electron_renderer->Message(internal, send_to_all, channel, std::move(message),
|
electron_renderer->Message(internal, channel, std::move(message),
|
||||||
0 /* sender_id */);
|
0 /* sender_id */);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -249,18 +249,15 @@ class WebContents : public gin::Wrappable<WebContents>,
|
||||||
|
|
||||||
// Send messages to browser.
|
// Send messages to browser.
|
||||||
bool SendIPCMessage(bool internal,
|
bool SendIPCMessage(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
v8::Local<v8::Value> args);
|
v8::Local<v8::Value> args);
|
||||||
|
|
||||||
bool SendIPCMessageWithSender(bool internal,
|
bool SendIPCMessageWithSender(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
blink::CloneableMessage args,
|
blink::CloneableMessage args,
|
||||||
int32_t sender_id = 0);
|
int32_t sender_id = 0);
|
||||||
|
|
||||||
bool SendIPCMessageToFrame(bool internal,
|
bool SendIPCMessageToFrame(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
int32_t frame_id,
|
int32_t frame_id,
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
v8::Local<v8::Value> args);
|
v8::Local<v8::Value> args);
|
||||||
|
@ -619,7 +616,6 @@ class WebContents : public gin::Wrappable<WebContents>,
|
||||||
blink::CloneableMessage arguments,
|
blink::CloneableMessage arguments,
|
||||||
MessageSyncCallback callback) override;
|
MessageSyncCallback callback) override;
|
||||||
void MessageTo(bool internal,
|
void MessageTo(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
int32_t web_contents_id,
|
int32_t web_contents_id,
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
blink::CloneableMessage arguments) override;
|
blink::CloneableMessage arguments) override;
|
||||||
|
|
|
@ -8,7 +8,6 @@ import "third_party/blink/public/mojom/messaging/transferable_message.mojom";
|
||||||
interface ElectronRenderer {
|
interface ElectronRenderer {
|
||||||
Message(
|
Message(
|
||||||
bool internal,
|
bool internal,
|
||||||
bool send_to_all,
|
|
||||||
string channel,
|
string channel,
|
||||||
blink.mojom.CloneableMessage arguments,
|
blink.mojom.CloneableMessage arguments,
|
||||||
int32 sender_id);
|
int32 sender_id);
|
||||||
|
@ -67,7 +66,6 @@ interface ElectronBrowser {
|
||||||
// WebContents's main frame, specified by |web_contents_id|.
|
// WebContents's main frame, specified by |web_contents_id|.
|
||||||
MessageTo(
|
MessageTo(
|
||||||
bool internal,
|
bool internal,
|
||||||
bool send_to_all,
|
|
||||||
int32 web_contents_id,
|
int32 web_contents_id,
|
||||||
string channel,
|
string channel,
|
||||||
blink.mojom.CloneableMessage arguments);
|
blink.mojom.CloneableMessage arguments);
|
||||||
|
|
|
@ -172,7 +172,6 @@ class IPCRenderer : public gin::Wrappable<IPCRenderer>,
|
||||||
void SendTo(v8::Isolate* isolate,
|
void SendTo(v8::Isolate* isolate,
|
||||||
gin_helper::ErrorThrower thrower,
|
gin_helper::ErrorThrower thrower,
|
||||||
bool internal,
|
bool internal,
|
||||||
bool send_to_all,
|
|
||||||
int32_t web_contents_id,
|
int32_t web_contents_id,
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
v8::Local<v8::Value> arguments) {
|
v8::Local<v8::Value> arguments) {
|
||||||
|
@ -184,8 +183,8 @@ class IPCRenderer : public gin::Wrappable<IPCRenderer>,
|
||||||
if (!electron::SerializeV8Value(isolate, arguments, &message)) {
|
if (!electron::SerializeV8Value(isolate, arguments, &message)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
electron_browser_remote_->MessageTo(internal, send_to_all, web_contents_id,
|
electron_browser_remote_->MessageTo(internal, web_contents_id, channel,
|
||||||
channel, std::move(message));
|
std::move(message));
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendToHost(v8::Isolate* isolate,
|
void SendToHost(v8::Isolate* isolate,
|
||||||
|
|
|
@ -132,7 +132,6 @@ void ElectronApiServiceImpl::OnConnectionError() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void ElectronApiServiceImpl::Message(bool internal,
|
void ElectronApiServiceImpl::Message(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
blink::CloneableMessage arguments,
|
blink::CloneableMessage arguments,
|
||||||
int32_t sender_id) {
|
int32_t sender_id) {
|
||||||
|
@ -168,18 +167,6 @@ void ElectronApiServiceImpl::Message(bool internal,
|
||||||
v8::Local<v8::Value> args = gin::ConvertToV8(isolate, arguments);
|
v8::Local<v8::Value> args = gin::ConvertToV8(isolate, arguments);
|
||||||
|
|
||||||
EmitIPCEvent(context, internal, channel, {}, args, sender_id);
|
EmitIPCEvent(context, internal, channel, {}, args, sender_id);
|
||||||
|
|
||||||
// Also send the message to all sub-frames.
|
|
||||||
// TODO(MarshallOfSound): Completely move this logic to the main process
|
|
||||||
if (send_to_all) {
|
|
||||||
for (blink::WebFrame* child = frame->FirstChild(); child;
|
|
||||||
child = child->NextSibling())
|
|
||||||
if (child->IsWebLocalFrame()) {
|
|
||||||
v8::Local<v8::Context> child_context =
|
|
||||||
renderer_client_->GetContext(child->ToWebLocalFrame(), isolate);
|
|
||||||
EmitIPCEvent(child_context, internal, channel, {}, args, sender_id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ElectronApiServiceImpl::ReceivePostMessage(
|
void ElectronApiServiceImpl::ReceivePostMessage(
|
||||||
|
|
|
@ -29,7 +29,6 @@ class ElectronApiServiceImpl : public mojom::ElectronRenderer,
|
||||||
mojo::PendingAssociatedReceiver<mojom::ElectronRenderer> receiver);
|
mojo::PendingAssociatedReceiver<mojom::ElectronRenderer> receiver);
|
||||||
|
|
||||||
void Message(bool internal,
|
void Message(bool internal,
|
||||||
bool send_to_all,
|
|
||||||
const std::string& channel,
|
const std::string& channel,
|
||||||
blink::CloneableMessage arguments,
|
blink::CloneableMessage arguments,
|
||||||
int32_t sender_id) override;
|
int32_t sender_id) override;
|
||||||
|
|
2
typings/internal-ambient.d.ts
vendored
2
typings/internal-ambient.d.ts
vendored
|
@ -32,7 +32,7 @@ declare namespace NodeJS {
|
||||||
send(internal: boolean, channel: string, args: any[]): void;
|
send(internal: boolean, channel: string, args: any[]): void;
|
||||||
sendSync(internal: boolean, channel: string, args: any[]): any;
|
sendSync(internal: boolean, channel: string, args: any[]): any;
|
||||||
sendToHost(channel: string, args: any[]): void;
|
sendToHost(channel: string, args: any[]): void;
|
||||||
sendTo(internal: boolean, sendToAll: boolean, webContentsId: number, channel: string, args: any[]): void;
|
sendTo(internal: boolean, webContentsId: number, channel: string, args: any[]): void;
|
||||||
invoke<T>(internal: boolean, channel: string, args: any[]): Promise<{ error: string, result: T }>;
|
invoke<T>(internal: boolean, channel: string, args: any[]): Promise<{ error: string, result: T }>;
|
||||||
postMessage(channel: string, message: any, transferables: MessagePort[]): void;
|
postMessage(channel: string, message: any, transferables: MessagePort[]): void;
|
||||||
}
|
}
|
||||||
|
|
6
typings/internal-electron.d.ts
vendored
6
typings/internal-electron.d.ts
vendored
|
@ -67,12 +67,11 @@ declare namespace Electron {
|
||||||
_windowOpenHandler: ((opts: {url: string, frameName: string, features: string}) => any) | null;
|
_windowOpenHandler: ((opts: {url: string, frameName: string, features: string}) => any) | null;
|
||||||
_callWindowOpenHandler(event: any, url: string, frameName: string, rawFeatures: string): Electron.BrowserWindowConstructorOptions | null;
|
_callWindowOpenHandler(event: any, url: string, frameName: string, rawFeatures: string): Electron.BrowserWindowConstructorOptions | null;
|
||||||
_setNextChildWebPreferences(prefs: Partial<Electron.BrowserWindowConstructorOptions['webPreferences']> & Pick<Electron.BrowserWindowConstructorOptions, 'backgroundColor'>): void;
|
_setNextChildWebPreferences(prefs: Partial<Electron.BrowserWindowConstructorOptions['webPreferences']> & Pick<Electron.BrowserWindowConstructorOptions, 'backgroundColor'>): void;
|
||||||
_send(internal: boolean, sendToAll: boolean, channel: string, args: any): boolean;
|
_send(internal: boolean, channel: string, args: any): boolean;
|
||||||
_sendToFrame(internal: boolean, sendToAll: boolean, frameId: number, channel: string, args: any): boolean;
|
_sendToFrame(internal: boolean, frameId: number, channel: string, args: any): boolean;
|
||||||
_sendToFrameInternal(frameId: number, channel: string, ...args: any[]): boolean;
|
_sendToFrameInternal(frameId: number, channel: string, ...args: any[]): boolean;
|
||||||
_postMessage(channel: string, message: any, transfer?: any[]): void;
|
_postMessage(channel: string, message: any, transfer?: any[]): void;
|
||||||
_sendInternal(channel: string, ...args: any[]): void;
|
_sendInternal(channel: string, ...args: any[]): void;
|
||||||
_sendInternalToAll(channel: string, ...args: any[]): void;
|
|
||||||
_printToPDF(options: any): Promise<Buffer>;
|
_printToPDF(options: any): Promise<Buffer>;
|
||||||
_print(options: any, callback?: (success: boolean, failureReason: string) => void): void;
|
_print(options: any, callback?: (success: boolean, failureReason: string) => void): void;
|
||||||
_getPrinters(): Electron.PrinterInfo[];
|
_getPrinters(): Electron.PrinterInfo[];
|
||||||
|
@ -232,7 +231,6 @@ declare namespace ElectronInternal {
|
||||||
|
|
||||||
interface IpcRendererInternal extends Electron.IpcRenderer {
|
interface IpcRendererInternal extends Electron.IpcRenderer {
|
||||||
invoke<T>(channel: string, ...args: any[]): Promise<T>;
|
invoke<T>(channel: string, ...args: any[]): Promise<T>;
|
||||||
sendToAll(webContentsId: number, channel: string, ...args: any[]): void;
|
|
||||||
onMessageFromMain(channel: string, listener: (event: Electron.IpcRendererEvent, ...args: any[]) => void): this;
|
onMessageFromMain(channel: string, listener: (event: Electron.IpcRendererEvent, ...args: any[]) => void): this;
|
||||||
onceMessageFromMain(channel: string, listener: (event: Electron.IpcRendererEvent, ...args: any[]) => void): this;
|
onceMessageFromMain(channel: string, listener: (event: Electron.IpcRendererEvent, ...args: any[]) => void): this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue