summaryrefslogtreecommitdiffstats
path: root/tests/quicktestbrowser/main.cpp
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2015-12-03 15:29:48 +0100
committerMichal Klocek <michal.klocek@theqtcompany.com>2016-01-15 22:07:06 +0000
commit7ae7b58955b018aa7294aa07d6ff7754af336f4c (patch)
tree0eaee11e15c5eb5cb59a9bf072237deb0524cc26 /tests/quicktestbrowser/main.cpp
parent09ff58b1a91a1472b4aa4c644686fb2e46a3b1ca (diff)
Remove FilterRequest from qwebenginecookiestore
OnCanSetCookie and OnCanGetCookies should both be mapped to API. Since the other call is missing (filter cookies which should be send) remove existing one from 5.6 Change-Id: I4f42c4a1fee6add7a5efffaf4c38877a1f35ce61 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com>
Diffstat (limited to 'tests/quicktestbrowser/main.cpp')
-rw-r--r--tests/quicktestbrowser/main.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/quicktestbrowser/main.cpp b/tests/quicktestbrowser/main.cpp
index 61977a018..85a02ab34 100644
--- a/tests/quicktestbrowser/main.cpp
+++ b/tests/quicktestbrowser/main.cpp
@@ -86,15 +86,9 @@ int main(int argc, char **argv)
QObject *rootObject = appEngine.rootObjects().first();
QQuickWebEngineProfile *profile = new QQuickWebEngineProfile(rootObject);
- QWebEngineCookieStore *client = profile->cookieStore();
const QMetaObject *rootMeta = rootObject->metaObject();
- int index = rootMeta->indexOfProperty("thirdPartyCookiesEnabled");
- Q_ASSERT(index != -1);
- QMetaProperty thirdPartyCookiesProperty = rootMeta->property(index);
- client->setCookieFilter([rootObject,&thirdPartyCookiesProperty](const QWebEngineCookieStore::FilterRequest&){ return thirdPartyCookiesProperty.read(rootObject).toBool(); });
-
- index = rootMeta->indexOfProperty("testProfile");
+ int index = rootMeta->indexOfProperty("testProfile");
Q_ASSERT(index != -1);
QMetaProperty profileProperty = rootMeta->property(index);
profileProperty.write(rootObject, qVariantFromValue(profile));