chore: remove unused and broken ipcRendererInternal.sendTo() (#29743)
This commit is contained in:
parent
6b4c59b8d8
commit
de6696ef1d
10 changed files with 12 additions and 25 deletions
|
@ -4,7 +4,8 @@ const { ipc } = process._linkedBinding('electron_renderer_ipc');
|
|||
|
||||
const internal = true;
|
||||
|
||||
const ipcRendererInternal = new EventEmitter() as any as ElectronInternal.IpcRendererInternal;
|
||||
export const ipcRendererInternal = new EventEmitter() as any as ElectronInternal.IpcRendererInternal;
|
||||
|
||||
ipcRendererInternal.send = function (channel, ...args) {
|
||||
return ipc.send(internal, channel, args);
|
||||
};
|
||||
|
@ -13,10 +14,6 @@ ipcRendererInternal.sendSync = function (channel, ...args) {
|
|||
return ipc.sendSync(internal, channel, args);
|
||||
};
|
||||
|
||||
ipcRendererInternal.sendTo = function (webContentsId, channel, ...args) {
|
||||
return ipc.sendTo(internal, webContentsId, channel, args);
|
||||
};
|
||||
|
||||
ipcRendererInternal.invoke = async function<T> (channel: string, ...args: any[]) {
|
||||
const { error, result } = await ipc.invoke<T>(internal, channel, args);
|
||||
if (error) {
|
||||
|
@ -24,5 +21,3 @@ ipcRendererInternal.invoke = async function<T> (channel: string, ...args: any[])
|
|||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
export { ipcRendererInternal };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue