upgrade to gecko 149.0

This commit is contained in:
Fabian Freund
2026-03-26 16:32:16 +01:00
parent 8c08f6262f
commit 0c6d669185
21 changed files with 293 additions and 444 deletions
@@ -42,8 +42,13 @@ class GeckoSyncService {
return _api.getDevices();
}
Future<bool> sendTabToDevice(String deviceId, String title, String url) {
return _api.sendTabToDevice(deviceId, title, url);
Future<bool> sendTabToDevice(
String deviceId,
String title,
String url,
bool private,
) {
return _api.sendTabToDevice(deviceId, title, url, private);
}
Future<void> refreshDevices() {
@@ -116,15 +116,6 @@ class GeckoTabService {
);
}
Future<void> restoreTabsByBrowserState({
required RecoverableBrowserState state,
RestoreLocation restoreLocation = RestoreLocation.end,
}) {
return _api.restoreTabsByBrowserState(
state: state,
restoreLocation: restoreLocation,
);
}
//The calls with engin storage for restore are not supported at the moment
//selectOrAddTab invokes splitted