diff options
author | Peter Varga <pvarga@inf.u-szeged.hu> | 2021-07-13 14:40:43 +0200 |
---|---|---|
committer | Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> | 2021-07-20 09:21:44 +0000 |
commit | 4c7b47a3b46594fa54dda993eebc08c74d1b3a3c (patch) | |
tree | e1e078776ccb8fa60eac3f4b4c4b150f5a47e404 /src/webenginequick/ui_delegates_manager.h | |
parent | cd1799eecf578fa42ee6e31f5caefe7db191fd37 (diff) | |
download | qtwebengine-4c7b47a3b46594fa54dda993eebc08c74d1b3a3c.tar.gz |
Clean up quick API
Change-Id: I9407d407b203b8e2bb13768e5a899624ea47282a
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
(cherry picked from commit 6f97b43350f7949029045a37f226dd81e23e25d1)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'src/webenginequick/ui_delegates_manager.h')
-rw-r--r-- | src/webenginequick/ui_delegates_manager.h | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/webenginequick/ui_delegates_manager.h b/src/webenginequick/ui_delegates_manager.h index 94c2987e1..3ab10ad94 100644 --- a/src/webenginequick/ui_delegates_manager.h +++ b/src/webenginequick/ui_delegates_manager.h @@ -40,15 +40,12 @@ #ifndef UI_DELEGATES_MANAGER_H #define UI_DELEGATES_MANAGER_H -#include "api/qquickwebengineaction_p.h" -#include "qglobal.h" -#include "web_contents_adapter.h" -#include "web_contents_adapter_client.h" - -#include <QCoreApplication> -#include <QExplicitlySharedDataPointer> -#include <QPoint> -#include <QSharedPointer> +#include <QtCore/qcoreapplication.h> +#include <QtCore/qpoint.h> +#include <QtCore/qscopedpointer.h> +#include <QtCore/qsharedpointer.h> +#include <QtCore/qstring.h> +#include <QtCore/qstringlist.h> #define FOR_EACH_COMPONENT_TYPE(F, SEPARATOR) \ F(Menu, menu) SEPARATOR \ @@ -72,17 +69,19 @@ QQmlComponent *COMPONENT##Component QT_BEGIN_NAMESPACE -class QQmlContext; class QQmlComponent; +class QQmlContext; +class QQmlEngine; class QQuickItem; +class QQuickWebEngineAction; class QQuickWebEngineView; -class QQmlEngine; QT_END_NAMESPACE namespace QtWebEngineCore { class AuthenticationDialogController; -class JavaScriptDialogController; +class ColorChooserController; class FilePickerController; +class JavaScriptDialogController; class TouchSelectionMenuController; const char *defaultPropertyName(QObject *obj); |