mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-05 13:45:25 -06:00
9609bc7976
* RTC-5104: screensharing indicator * RTC-5104: screensharing indicator, windows fixes
35 lines
749 B
JavaScript
35 lines
749 B
JavaScript
'use strict';
|
|
|
|
let keyMirror = require('keymirror');
|
|
|
|
/**
|
|
* Set of APIs exposed to the remote object
|
|
* @type {Object}
|
|
*/
|
|
const cmds = keyMirror({
|
|
isOnline: null,
|
|
registerLogger: null,
|
|
setBadgeCount: null,
|
|
badgeDataUrl: null,
|
|
activate: null,
|
|
registerBoundsChange: null,
|
|
registerProtocolHandler: null,
|
|
registerActivityDetection: null,
|
|
showNotificationSettings: null,
|
|
sanitize: null,
|
|
bringToFront: null,
|
|
openScreenPickerWindow: null,
|
|
popupMenu: null,
|
|
optimizeMemoryConsumption: null,
|
|
optimizeMemoryRegister: null,
|
|
setIsInMeeting: null,
|
|
setLocale: null,
|
|
keyPress: null,
|
|
openScreenSharingIndicator: null
|
|
});
|
|
|
|
module.exports = {
|
|
cmds: cmds,
|
|
apiName: 'symphony-api'
|
|
};
|