use of de.baumann.browser.database.RecordAction in project browser by scoute-dich.
the class AdBlock method clearDomains.
public synchronized void clearDomains() {
RecordAction action = new RecordAction(context);
action.open(true);
action.clearDomains();
action.close();
whitelist.clear();
}
use of de.baumann.browser.database.RecordAction in project browser by scoute-dich.
the class Cookie method loadDomains.
private static synchronized void loadDomains(Context context) {
RecordAction action = new RecordAction(context);
action.open(false);
whitelistCookie.clear();
whitelistCookie.addAll(action.listDomainsCookie());
action.close();
}
use of de.baumann.browser.database.RecordAction in project browser by scoute-dich.
the class Cookie method clearDomains.
public synchronized void clearDomains() {
RecordAction action = new RecordAction(context);
action.open(true);
action.clearDomainsCookie();
action.close();
whitelistCookie.clear();
}
Aggregations