Commit d8daba26 authored by Pierre Rossi's avatar Pierre Rossi Committed by Andras Becsi
Browse files

Revive ReloadAndBypassCache


Appears to be an oversight for widgets, as the API was there,
but just wasn't wired.
Also add it for QQuickWebEngineView while we're at it.

Change-Id: I07d6e356cbaf22b79f3fc5a82df78c6821993e8d
Reviewed-by: default avatarZeno Albisser <zeno.albisser@digia.com>
Showing with 20 additions and 0 deletions
...@@ -454,6 +454,13 @@ void WebContentsAdapter::reload() ...@@ -454,6 +454,13 @@ void WebContentsAdapter::reload()
d->webContents->Focus(); d->webContents->Focus();
} }
void WebContentsAdapter::reloadAndBypassCache()
{
Q_D(WebContentsAdapter);
d->webContents->GetController().ReloadIgnoringCache(/*checkRepost = */false);
d->webContents->Focus();
}
void WebContentsAdapter::load(const QUrl &url) void WebContentsAdapter::load(const QUrl &url)
{ {
// The situation can occur when relying on the editingFinished signal in QML to set the url // The situation can occur when relying on the editingFinished signal in QML to set the url
......
...@@ -74,6 +74,7 @@ public: ...@@ -74,6 +74,7 @@ public:
bool canGoForward() const; bool canGoForward() const;
void stop(); void stop();
void reload(); void reload();
void reloadAndBypassCache();
void load(const QUrl&); void load(const QUrl&);
void setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl); void setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl);
QUrl activeUrl() const; QUrl activeUrl() const;
......
...@@ -665,6 +665,14 @@ void QQuickWebEngineView::reload() ...@@ -665,6 +665,14 @@ void QQuickWebEngineView::reload()
d->adapter->reload(); d->adapter->reload();
} }
void QQuickWebEngineView::reloadAndBypassCache()
{
Q_D(QQuickWebEngineView);
if (!d->adapter)
return;
d->adapter->reloadAndBypassCache();
}
void QQuickWebEngineView::stop() void QQuickWebEngineView::stop()
{ {
Q_D(QQuickWebEngineView); Q_D(QQuickWebEngineView);
......
...@@ -207,6 +207,7 @@ public Q_SLOTS: ...@@ -207,6 +207,7 @@ public Q_SLOTS:
void goForward(); void goForward();
void goBackOrForward(int index); void goBackOrForward(int index);
void reload(); void reload();
void reloadAndBypassCache();
void stop(); void stop();
Q_REVISION(1) void findText(const QString &subString, FindFlags options = 0, const QJSValue &callback = QJSValue()); Q_REVISION(1) void findText(const QString &subString, FindFlags options = 0, const QJSValue &callback = QJSValue());
Q_REVISION(1) void fullScreenCancelled(); Q_REVISION(1) void fullScreenCancelled();
......
...@@ -646,6 +646,9 @@ void QWebEnginePage::triggerAction(WebAction action, bool) ...@@ -646,6 +646,9 @@ void QWebEnginePage::triggerAction(WebAction action, bool)
case Reload: case Reload:
d->adapter->reload(); d->adapter->reload();
break; break;
case ReloadAndBypassCache:
d->adapter->reloadAndBypassCache();
break;
case Cut: case Cut:
d->adapter->cut(); d->adapter->cut();
break; break;
......
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