summaryrefslogtreecommitdiffstats
path: root/src/core/cookie_monster_delegate_qt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/cookie_monster_delegate_qt.h')
-rw-r--r--src/core/cookie_monster_delegate_qt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/cookie_monster_delegate_qt.h b/src/core/cookie_monster_delegate_qt.h
index db80bf0a1..c9f27c2bc 100644
--- a/src/core/cookie_monster_delegate_qt.h
+++ b/src/core/cookie_monster_delegate_qt.h
@@ -50,7 +50,7 @@ QT_WARNING_POP
#include <QNetworkCookie>
#include <QPointer>
-QT_FORWARD_DECLARE_CLASS(QWebEngineCookieStoreClient)
+QT_FORWARD_DECLARE_CLASS(QWebEngineCookieStore)
namespace QtWebEngineCore {
@@ -62,7 +62,7 @@ static const char* const kCookieableSchemes[] =
{ "http", "https", "qrc", "ws", "wss" };
class QWEBENGINE_EXPORT CookieMonsterDelegateQt: public net::CookieMonsterDelegate {
- QPointer<QWebEngineCookieStoreClient> m_client;
+ QPointer<QWebEngineCookieStore> m_client;
scoped_refptr<net::CookieMonster> m_cookieMonster;
public:
CookieMonsterDelegateQt();
@@ -77,7 +77,7 @@ public:
void deleteAllCookies(quint64 callbackId);
void setCookieMonster(net::CookieMonster* monster);
- void setClient(QWebEngineCookieStoreClient *client);
+ void setClient(QWebEngineCookieStore *client);
bool canSetCookie(const QUrl &firstPartyUrl, const QByteArray &cookieLine, const QUrl &url);
void OnCookieChanged(const net::CanonicalCookie& cookie, bool removed, ChangeCause cause) override;