finished implementing history with removal options

This commit is contained in:
Fabian Freund
2025-09-19 10:27:38 +02:00
parent 0d7ae20854
commit b01012c76c
17 changed files with 525 additions and 75 deletions
@@ -1248,6 +1248,12 @@ abstract class GeckoHistoryApi {
int endMillis,
List<VisitType> excludeTypes,
);
@async
void deleteVisit(String url, int timestamp);
@async
void deleteVisitsBetween(int startMillis, int endMillis);
}
@HostApi()