SymphonyElectron/js/enums/api.js
Kiran Niranjan 96707907c7 ELECTRON-730 (Implement aggressive refresh to optimize refresh) (#488)
* ELECTRON-730 - Implement aggressive refresh to optimize refresh

* ELECTRON-730 - Increase memory threshold to 800MB
2018-09-01 16:35:53 +05:30

34 lines
712 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,
});
module.exports = {
cmds: cmds,
apiName: 'symphony-api'
};