Commit 2adc7eab authored by Jüri Valdmann's avatar Jüri Valdmann Committed by Kai Koehne
Browse files

Private constructors for permission classes


Change-Id: I55b033a03ec581841e1cea55c3d707067ee5ef42
Reviewed-by: default avatarKai Koehne <kai.koehne@qt.io>
Showing with 9 additions and 5 deletions
...@@ -45,7 +45,8 @@ ...@@ -45,7 +45,8 @@
#include <QtWebEngineCore/qtwebenginecoreglobal.h> #include <QtWebEngineCore/qtwebenginecoreglobal.h>
namespace QtWebEngineCore { namespace QtWebEngineCore {
class QuotaRequestController; class QuotaPermissionContextQt;
class QuotaRequestController;
} }
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
...@@ -56,7 +57,6 @@ class QWEBENGINE_EXPORT QWebEngineQuotaRequest { ...@@ -56,7 +57,6 @@ class QWEBENGINE_EXPORT QWebEngineQuotaRequest {
Q_PROPERTY(qint64 requestedSize READ requestedSize CONSTANT FINAL) Q_PROPERTY(qint64 requestedSize READ requestedSize CONSTANT FINAL)
public: public:
QWebEngineQuotaRequest() {} QWebEngineQuotaRequest() {}
QWebEngineQuotaRequest(QSharedPointer<QtWebEngineCore::QuotaRequestController>);
Q_INVOKABLE void accept(); Q_INVOKABLE void accept();
Q_INVOKABLE void reject(); Q_INVOKABLE void reject();
QUrl origin() const; QUrl origin() const;
...@@ -64,6 +64,8 @@ public: ...@@ -64,6 +64,8 @@ public:
bool operator==(const QWebEngineQuotaRequest &that) const { return d_ptr == that.d_ptr; } bool operator==(const QWebEngineQuotaRequest &that) const { return d_ptr == that.d_ptr; }
bool operator!=(const QWebEngineQuotaRequest &that) const { return d_ptr != that.d_ptr; } bool operator!=(const QWebEngineQuotaRequest &that) const { return d_ptr != that.d_ptr; }
private: private:
QWebEngineQuotaRequest(QSharedPointer<QtWebEngineCore::QuotaRequestController>);
friend QtWebEngineCore::QuotaPermissionContextQt;
QSharedPointer<QtWebEngineCore::QuotaRequestController> d_ptr; QSharedPointer<QtWebEngineCore::QuotaRequestController> d_ptr;
}; };
......
...@@ -45,7 +45,8 @@ ...@@ -45,7 +45,8 @@
#include <QtWebEngineCore/qtwebenginecoreglobal.h> #include <QtWebEngineCore/qtwebenginecoreglobal.h>
namespace QtWebEngineCore { namespace QtWebEngineCore {
class RegisterProtocolHandlerRequestController; class RegisterProtocolHandlerRequestController;
class WebContentsDelegateQt;
} }
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
...@@ -56,8 +57,6 @@ class QWEBENGINE_EXPORT QWebEngineRegisterProtocolHandlerRequest { ...@@ -56,8 +57,6 @@ class QWEBENGINE_EXPORT QWebEngineRegisterProtocolHandlerRequest {
Q_PROPERTY(QString scheme READ scheme CONSTANT FINAL) Q_PROPERTY(QString scheme READ scheme CONSTANT FINAL)
public: public:
QWebEngineRegisterProtocolHandlerRequest() {} QWebEngineRegisterProtocolHandlerRequest() {}
QWebEngineRegisterProtocolHandlerRequest(
QSharedPointer<QtWebEngineCore::RegisterProtocolHandlerRequestController>);
Q_INVOKABLE void accept(); Q_INVOKABLE void accept();
Q_INVOKABLE void reject(); Q_INVOKABLE void reject();
QUrl origin() const; QUrl origin() const;
...@@ -65,6 +64,9 @@ public: ...@@ -65,6 +64,9 @@ public:
bool operator==(const QWebEngineRegisterProtocolHandlerRequest &that) const { return d_ptr == that.d_ptr; } bool operator==(const QWebEngineRegisterProtocolHandlerRequest &that) const { return d_ptr == that.d_ptr; }
bool operator!=(const QWebEngineRegisterProtocolHandlerRequest &that) const { return d_ptr != that.d_ptr; } bool operator!=(const QWebEngineRegisterProtocolHandlerRequest &that) const { return d_ptr != that.d_ptr; }
private: private:
QWebEngineRegisterProtocolHandlerRequest(
QSharedPointer<QtWebEngineCore::RegisterProtocolHandlerRequestController>);
friend QtWebEngineCore::WebContentsDelegateQt;
QSharedPointer<QtWebEngineCore::RegisterProtocolHandlerRequestController> d_ptr; QSharedPointer<QtWebEngineCore::RegisterProtocolHandlerRequestController> d_ptr;
}; };
......
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