summaryrefslogtreecommitdiffstats
path: root/src/core/api
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-07-24 14:28:45 +0200
committerKai Koehne <kai.koehne@theqtcompany.com>2015-08-04 12:23:03 +0000
commit0a2d163cdb5ea0ae0d92a557fc1dbb5a449a3201 (patch)
treeb4dd0fa1e0f4808f023b5fed63c135f56851805b /src/core/api
parent2a56ec7ce4713711b55bb1dfc86a4320d943f606 (diff)
Fix #include's in public headers
Uniformly use the <Module/class.h> style, like https://wiki.qt.io/Coding_Conventions mandates. Change-Id: I4c05599fa689f375158fd3b0a54aada8571e5c59 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'src/core/api')
-rw-r--r--src/core/api/qwebenginecallback.h6
-rw-r--r--src/core/api/qwebenginecookiestoreclient.h8
-rw-r--r--src/core/api/qwebengineurlrequestinfo.h4
-rw-r--r--src/core/api/qwebengineurlrequestinterceptor.h10
4 files changed, 14 insertions, 14 deletions
diff --git a/src/core/api/qwebenginecallback.h b/src/core/api/qwebenginecallback.h
index a88fa838c..ddee20d06 100644
--- a/src/core/api/qwebenginecallback.h
+++ b/src/core/api/qwebenginecallback.h
@@ -40,9 +40,9 @@
#include "qtwebenginecoreglobal.h"
#include <QtCore/qcompilerdetection.h> // Needed for Q_DECL_OVERRIDE
-#include <QExplicitlySharedDataPointer>
-#include <QString>
-#include <QVariant>
+#include <QtCore/qshareddata.h>
+#include <QtCore/qstring.h>
+#include <QtCore/qvariant.h>
namespace QtWebEngineCore {
class CallbackDirectory;
diff --git a/src/core/api/qwebenginecookiestoreclient.h b/src/core/api/qwebenginecookiestoreclient.h
index c9cfc1b37..929584c86 100644
--- a/src/core/api/qwebenginecookiestoreclient.h
+++ b/src/core/api/qwebenginecookiestoreclient.h
@@ -40,10 +40,10 @@
#include "qtwebenginecoreglobal.h"
#include "qwebenginecallback.h"
-#include <QObject>
-#include <QScopedPointer>
-#include <QNetworkCookie>
-#include <QUrl>
+#include <QtCore/qobject.h>
+#include <QtCore/qscopedpointer.h>
+#include <QtCore/qurl.h>
+#include <QtNetwork/qnetworkcookie.h>
namespace QtWebEngineCore {
class CookieMonsterDelegateQt;
diff --git a/src/core/api/qwebengineurlrequestinfo.h b/src/core/api/qwebengineurlrequestinfo.h
index 8ef787995..dd1e57ebd 100644
--- a/src/core/api/qwebengineurlrequestinfo.h
+++ b/src/core/api/qwebengineurlrequestinfo.h
@@ -39,8 +39,8 @@
#include "qtwebenginecoreglobal.h"
-#include <QScopedPointer>
-#include <QUrl>
+#include <QtCore/qscopedpointer.h>
+#include <QtCore/qurl.h>
namespace QtWebEngineCore {
class NetworkDelegateQt;
diff --git a/src/core/api/qwebengineurlrequestinterceptor.h b/src/core/api/qwebengineurlrequestinterceptor.h
index a38a697af..3eac74bb6 100644
--- a/src/core/api/qwebengineurlrequestinterceptor.h
+++ b/src/core/api/qwebengineurlrequestinterceptor.h
@@ -38,12 +38,12 @@
#define QWEBENINGEURLREQUESTINTERCEPTOR_H
#include "qtwebenginecoreglobal.h"
-
#include "qwebengineurlrequestinfo.h"
-#include <QByteArray>
-#include <QHash>
-#include <QObject>
-#include <QUrl>
+
+#include <QtCore/qbytearray.h>
+#include <QtCore/qhash.h>
+#include <QtCore/qobject.h>
+#include <QtCore/qurl.h>
QT_BEGIN_NAMESPACE