upgrade to gecko 149.0
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user