Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2019-02-24 01:20:49 +00:00
parent b02b371250
commit 45e9dbe49d
1 changed files with 6 additions and 6 deletions

View File

@ -114,28 +114,28 @@ export default class BasePlatform {
throw new Error("reload not implemented!");
}
supportsAutoLaunch() {
supportsAutoLaunch(): boolean {
return false;
}
// XXX: Surely this should be a setting like any other?
async getAutoLaunchEnabled() {
async getAutoLaunchEnabled(): boolean {
return false;
}
async setAutoLaunchEnabled(enabled) {
async setAutoLaunchEnabled(enabled: boolean) {
throw new Error("Unimplemented");
}
supportsMinimizeToTray() {
supportsMinimizeToTray(): boolean {
return false;
}
async getMinimizeToTrayEnabled() {
async getMinimizeToTrayEnabled(): boolean {
return false;
}
async setMinimizeToTrayEnabled() {
async setMinimizeToTrayEnabled(enabled: boolean) {
throw new Error("Unimplemented");
}
}