You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.6 KiB
44 lines
1.6 KiB
'use strict';
|
|
/**
|
|
* @license Angular v12.0.0-next.0
|
|
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
* License: MIT
|
|
*/
|
|
(function (factory) {
|
|
typeof define === 'function' && define.amd ? define(factory) :
|
|
factory();
|
|
}((function () {
|
|
'use strict';
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
Zone.__load_patch('electron', function (global, Zone, api) {
|
|
function patchArguments(target, name, source) {
|
|
return api.patchMethod(target, name, function (delegate) { return function (self, args) {
|
|
return delegate && delegate.apply(self, api.bindArguments(args, source));
|
|
}; });
|
|
}
|
|
var _a = require('electron'), desktopCapturer = _a.desktopCapturer, shell = _a.shell, CallbacksRegistry = _a.CallbacksRegistry, ipcRenderer = _a.ipcRenderer;
|
|
// patch api in renderer process directly
|
|
// desktopCapturer
|
|
if (desktopCapturer) {
|
|
patchArguments(desktopCapturer, 'getSources', 'electron.desktopCapturer.getSources');
|
|
}
|
|
// shell
|
|
if (shell) {
|
|
patchArguments(shell, 'openExternal', 'electron.shell.openExternal');
|
|
}
|
|
// patch api in main process through CallbackRegistry
|
|
if (!CallbacksRegistry) {
|
|
if (ipcRenderer) {
|
|
patchArguments(ipcRenderer, 'on', 'ipcRenderer.on');
|
|
}
|
|
return;
|
|
}
|
|
patchArguments(CallbacksRegistry.prototype, 'add', 'CallbackRegistry.add');
|
|
});
|
|
})));
|