summaryrefslogtreecommitdiffstats
path: root/src/webengine/api
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-02-08 11:23:21 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-02-15 16:24:21 +0000
commitba8d31f5513b486add0ffc84836a4062bedf234a (patch)
tree62524240c5c284be2b1c1ca824604b1bdeb49573 /src/webengine/api
parent7decc1a4716fbc8315318e3e8635f7aec0be58d6 (diff)
Allow disabling cache of off-the-record profiles
Change-Id: Ib319f46465e9f330ef5f2c7a5b2f6a3d50c33c00 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/webengine/api')
-rw-r--r--src/webengine/api/qquickwebengineprofile.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/webengine/api/qquickwebengineprofile.cpp b/src/webengine/api/qquickwebengineprofile.cpp
index 728f0b4a4..17c9738fb 100644
--- a/src/webengine/api/qquickwebengineprofile.cpp
+++ b/src/webengine/api/qquickwebengineprofile.cpp
@@ -98,9 +98,10 @@ ASSERT_ENUMS_MATCH(QQuickWebEngineDownloadItem::MimeHtmlSaveFormat, QtWebEngineC
This enum describes the HTTP cache type:
- \value MemoryHttpCache Use an in-memory cache. This is the only setting possible if
- \c off-the-record is set or no cache path is available.
- \value DiskHttpCache Use a disk cache. This is the default.
+ \value MemoryHttpCache Use an in-memory cache. This is the default if
+ \c off-the-record is set.
+ \value DiskHttpCache Use a disk cache. This is the default if \c off-the-record
+ is not set. Falls back to \c MemoryHttpCache if \c off-the-record is set.
\value NoCache Disable both in-memory and disk caching. (Added in Qt 5.7)
*/