summaryrefslogtreecommitdiffstats
path: root/src/core/net/cookie_monster_delegate_qt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/net/cookie_monster_delegate_qt.h')
-rw-r--r--src/core/net/cookie_monster_delegate_qt.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/net/cookie_monster_delegate_qt.h b/src/core/net/cookie_monster_delegate_qt.h
index 8aceca9c9..8717e17d0 100644
--- a/src/core/net/cookie_monster_delegate_qt.h
+++ b/src/core/net/cookie_monster_delegate_qt.h
@@ -95,6 +95,14 @@ private:
void DeleteCookieOnIOThread(const GURL& url, const std::string& cookie_name);
void DeleteSessionCookiesOnIOThread(net::CookieMonster::DeleteCallback callback);
void DeleteAllOnIOThread(net::CookieMonster::DeleteCallback callback);
+
+ void GetAllCookiesCallbackOnIOThread(qint64 callbackId, const net::CookieList &cookies);
+ void SetCookieCallbackOnIOThread(qint64 callbackId, bool success);
+ void DeleteCookiesCallbackOnIOThread(qint64 callbackId, uint numCookies);
+
+ void GetAllCookiesCallbackOnUIThread(qint64 callbackId, const QByteArray &cookies);
+ void SetCookieCallbackOnUIThread(qint64 callbackId, bool success);
+ void DeleteCookiesCallbackOnUIThread(qint64 callbackId, uint numCookies);
};
}