mirror of https://github.com/vector-im/riot-web
parent
b02b371250
commit
45e9dbe49d
|
@ -114,28 +114,28 @@ export default class BasePlatform {
|
||||||
throw new Error("reload not implemented!");
|
throw new Error("reload not implemented!");
|
||||||
}
|
}
|
||||||
|
|
||||||
supportsAutoLaunch() {
|
supportsAutoLaunch(): boolean {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX: Surely this should be a setting like any other?
|
// XXX: Surely this should be a setting like any other?
|
||||||
async getAutoLaunchEnabled() {
|
async getAutoLaunchEnabled(): boolean {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
async setAutoLaunchEnabled(enabled) {
|
async setAutoLaunchEnabled(enabled: boolean) {
|
||||||
throw new Error("Unimplemented");
|
throw new Error("Unimplemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
supportsMinimizeToTray() {
|
supportsMinimizeToTray(): boolean {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
async getMinimizeToTrayEnabled() {
|
async getMinimizeToTrayEnabled(): boolean {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
async setMinimizeToTrayEnabled() {
|
async setMinimizeToTrayEnabled(enabled: boolean) {
|
||||||
throw new Error("Unimplemented");
|
throw new Error("Unimplemented");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue