summaryrefslogtreecommitdiff
path: root/Source/WebCore/platform/network/qt/CookieJarQt.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/network/qt/CookieJarQt.h')
-rw-r--r--Source/WebCore/platform/network/qt/CookieJarQt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/WebCore/platform/network/qt/CookieJarQt.h b/Source/WebCore/platform/network/qt/CookieJarQt.h
index 0f7b6abef..fb0e1a7c8 100644
--- a/Source/WebCore/platform/network/qt/CookieJarQt.h
+++ b/Source/WebCore/platform/network/qt/CookieJarQt.h
@@ -40,8 +40,9 @@ public:
void getHostnamesWithCookies(HashSet<String>&);
bool deleteCookie(const QNetworkCookie&) final;
- void deleteCookiesForHostname(const String&);
+ void deleteCookiesForHostnames(const Vector<String>&);
void deleteAllCookies();
+ void deleteAllCookiesModifiedSince(std::chrono::system_clock::time_point);
bool setCookiesFromUrl(const QList<QNetworkCookie>&, const QUrl&) final;
void loadCookies();
@@ -49,6 +50,7 @@ private:
SharedCookieJarQt(const String&);
~SharedCookieJarQt();
bool ensureDatabaseTable();
+ void deleteCookiesForHostname(const String&);
SQLiteDatabase m_database;
};