chore: remove unused sendToAll + related APIs (#26771) (#27354)

This commit is contained in:
Milan Burda
2021-01-19 07:49:54 +01:00
committed by GitHub
parent c74780117e
commit a6af3bd8df
14 changed files with 24 additions and 97 deletions

View File

@@ -18,7 +18,7 @@ ipcRenderer.sendToHost = function (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) {