summaryrefslogtreecommitdiffstats
path: root/src/core/cookie_monster_delegate_qt.h
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2015-11-26 17:19:31 +0100
committerJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-12-01 22:05:00 +0000
commit0f64c6ae03a583e1fb060d87fc9b9dedf3b14dd6 (patch)
tree83bb7885a89ed3eca8d4e7e5bba0a2e44bad821e /src/core/cookie_monster_delegate_qt.h
parent6ef32812ccf6676e94e7d7fa7c3ae301d1069ca5 (diff)
Rename QWebEngineCookieStoreClient to QWebEngineCookieStore
Change-Id: I8f9a4c5c155a65ede24908799218fd867db0767c Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
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;