Commit 17eefd8f authored by Kai Koehne's avatar Kai Koehne Committed by Allan Sandfeld Jensen
Browse files

Improve QWebEngineCookieStore documentation


Change-Id: If11154d716b2ea98cc6b0b07c4fe2501fe27dcdb
Reviewed-by: default avatarLeena Miettinen <riitta-leena.miettinen@qt.io>
Showing with 3 additions and 3 deletions
......@@ -342,7 +342,7 @@ void QWebEngineCookieStore::deleteAllCookies()
The following code snippet illustrates how to set a cookie filter:
\code
profile->setCookieFilter(
profile->cookieStore()->setCookieFilter(
[&allowThirdPartyCookies](const QWebEngineCookieStore::FilterRequest &request)
{ return !request.thirdParty || allowThirdPartyCookies; }
);
......@@ -396,7 +396,7 @@ void QWebEngineCookieStore::setCookieFilter(std::function<bool(const FilterReque
/*!
\variable QWebEngineCookieStore::FilterRequest::origin
\brief The URL of the script or content accessing a cookie
\brief The URL of the script or content accessing a cookie.
Can be used to white-list or black-list third-party cookie access
for specific services.
......@@ -406,7 +406,7 @@ void QWebEngineCookieStore::setCookieFilter(std::function<bool(const FilterReque
/*!
\variable QWebEngineCookieStore::FilterRequest::thirdParty
\brief Whether this is considered a third-party access
\brief Whether this is considered a third-party access.
This is calculated by comparing FilterRequest::origin and FilterRequest::firstPartyUrl and
checking if they share a common origin that is not a top-domain (like .com or .co.uk),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment