summaryrefslogtreecommitdiffstats
path: root/src/core/quota_permission_context_qt.h
diff options
context:
space:
mode:
authorSzabolcs David <davidsz@inf.u-szeged.hu>2016-10-17 07:00:26 -0700
committerSzabolcs David <davidsz@inf.u-szeged.hu>2017-09-13 13:34:31 +0000
commit7b365eb352780dc0d939e918b0aa58d0458fd9da (patch)
tree6453e84f62bcbe92f9149a486fc83dbdf09cdb4c /src/core/quota_permission_context_qt.h
parent98bdf56f7428094c2d197fff72422d301470fbcb (diff)
Support Quota Management API
Expose navigator.webkitPersistentStorage.requestQuota() calls to the API layer as a permission API. It allows the users to accept these requests and specify a quota for persistent storage. https://developer.chrome.com/apps/offline_storage#managing_quota [ChangeLog] navigator.webkitPersistentStorage.requestQuota() calls were rejected by default and now they will emit signal quotaPermissionRequested in both WebEngineView and QWebEnginePage. Task-number: QTBUG-56354 Change-Id: Id192577ffb403694d3051414744ded89bbfd2aa8 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/core/quota_permission_context_qt.h')
-rw-r--r--src/core/quota_permission_context_qt.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/core/quota_permission_context_qt.h b/src/core/quota_permission_context_qt.h
new file mode 100644
index 000000000..68d768ac6
--- /dev/null
+++ b/src/core/quota_permission_context_qt.h
@@ -0,0 +1,61 @@
+/****************************************************************************
+**
+** Copyright (C) 2017 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtWebEngine module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QUOTA_PERMISSION_CONTEXT_QT_H
+#define QUOTA_PERMISSION_CONTEXT_QT_H
+
+#include "content/public/browser/quota_permission_context.h"
+
+#include <QtCore/qcompilerdetection.h> // Needed for Q_DECL_OVERRIDE
+
+namespace QtWebEngineCore {
+
+class QuotaPermissionContextQt : public content::QuotaPermissionContext {
+public:
+ void RequestQuotaPermission(const content::StorageQuotaParams &params,
+ int render_process_id,
+ const PermissionCallback &callback) Q_DECL_OVERRIDE;
+
+ void dispatchCallbackOnIOThread(const PermissionCallback &callback,
+ QuotaPermissionContext::QuotaPermissionResponse response);
+};
+
+} // namespace QtWebEngineCore
+
+#endif // QUOTA_PERMISSION_CONTEXT_QT_H