Changeset 102679 in webkit
- Timestamp:
- Dec 13, 2011, 7:19:50 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r102624 r102679 1 2011-12-13 Tor Arne Vestbø <tor.arne.vestbo@nokia.com> 2 3 [Qt] Get rid of layering violations in includes 4 5 WebKit/qt/API and WebKit/qt/WebCoreSupport should not be included 6 in the webcore.prf, but rather in each target that specificly needs 7 headers in these location. We used to include them directly in webcore 8 since we had layering violations between WebCore and WebKit, but now 9 that they are gone there's no reason to do that. 10 11 Reviewed by Simon Hausmann. 12 13 * Source/api.pri: 14 1 15 2011-12-12 Andy Wingo <wingo@igalia.com> 2 16 -
trunk/Source/WebCore/ChangeLog
r102671 r102679 1 2011-12-13 Tor Arne Vestbø <tor.arne.vestbo@nokia.com> 2 3 [Qt] Get rid of layering violations in includes 4 5 WebKit/qt/API and WebKit/qt/WebCoreSupport should not be included 6 in the webcore.prf, but rather in each target that specificly needs 7 headers in these location. We used to include them directly in webcore 8 since we had layering violations between WebCore and WebKit, but now 9 that they are gone there's no reason to do that. 10 11 Reviewed by Simon Hausmann. 12 13 * bridge/qt/qt_instance.cpp: 14 * platform/graphics/qt/GraphicsContext3DQt.cpp: 15 * platform/graphics/qt/ImageQt.cpp: 16 * platform/network/qt/QNetworkReplyHandler.cpp: 17 * platform/network/qt/ResourceHandleQt.cpp: 18 * platform/qt/CookieJarQt.cpp: 19 * platform/qt/RenderThemeQStyle.cpp: 20 * platform/qt/RenderThemeQt.cpp: 21 1 22 2011-12-13 Vsevolod Vlasov <vsevik@chromium.org> 2 23 -
trunk/Source/WebCore/bridge/qt/qt_instance.cpp
r100658 r102679 36 36 #include <qmetaobject.h> 37 37 #include <qmetatype.h> 38 #include <qwebelement.h>39 38 40 39 namespace JSC { -
trunk/Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp
r101578 r102679 37 37 #include "QWebPageClient.h" 38 38 #include "SharedBuffer.h" 39 #include "qwebpage.h"40 39 #include <QAbstractScrollArea> 41 40 #include <QGraphicsObject> -
trunk/Source/WebCore/platform/graphics/qt/ImageQt.cpp
r102404 r102679 41 41 #include "ShadowBlur.h" 42 42 #include "StillImageQt.h" 43 #include "qwebsettings.h"44 43 45 44 #include <QApplication> -
trunk/Source/WebCore/platform/network/qt/QNetworkReplyHandler.cpp
r100731 r102679 34 34 #include <QNetworkReply> 35 35 #include <QNetworkCookie> 36 #include <qwebframe.h>37 #include <qwebpage.h>38 36 39 37 #include <wtf/text/CString.h> -
trunk/Source/WebCore/platform/network/qt/ResourceHandleQt.cpp
r95120 r102679 31 31 #include "ResourceHandle.h" 32 32 33 #include "ChromeClientQt.h"34 33 #include "CachedResourceLoader.h" 35 34 #include "Frame.h" 36 35 #include "FrameNetworkingContext.h" 37 #include "FrameLoaderClientQt.h"38 36 #include "NotImplemented.h" 39 37 #include "Page.h" -
trunk/Source/WebCore/platform/qt/CookieJarQt.cpp
r100731 r102679 34 34 #include "Cookie.h" 35 35 #include "Document.h" 36 #include "FrameLoaderClientQt.h" 36 #include "Frame.h" 37 #include "FrameLoader.h" 37 38 #include "KURL.h" 38 39 #include "NetworkingContext.h" … … 44 45 #include <QSqlQuery> 45 46 #include <QStringList> 47 #include <QVariant> 46 48 47 49 namespace WebCore { -
trunk/Source/WebCore/platform/qt/RenderThemeQStyle.cpp
r102589 r102679 35 35 #include "CSSValueKeywords.h" 36 36 #include "Chrome.h" 37 #include "ChromeClient Qt.h"37 #include "ChromeClient.h" 38 38 #include "Color.h" 39 39 #include "Document.h" -
trunk/Source/WebCore/platform/qt/RenderThemeQt.cpp
r100270 r102679 34 34 #include "CSSValueKeywords.h" 35 35 #include "Chrome.h" 36 #include "ChromeClient Qt.h"36 #include "ChromeClient.h" 37 37 #include "Color.h" 38 38 #include "Font.h" -
trunk/Source/api.pri
r101477 r102679 80 80 $$PWD/WebKit/qt/WebCoreSupport/PlatformStrategiesQt.h 81 81 82 INCLUDEPATH += $$PWD/WebKit/qt/WebCoreSupport 83 82 84 contains(DEFINES, ENABLE_VIDEO=1) { 83 85 !contains(DEFINES, WTF_USE_QTKIT=1):!contains(DEFINES, WTF_USE_GSTREAMER=1):contains(DEFINES, WTF_USE_QT_MULTIMEDIA=1) { -
trunk/Tools/ChangeLog
r102677 r102679 1 2011-12-13 Tor Arne Vestbø <tor.arne.vestbo@nokia.com> 2 3 [Qt] Get rid of layering violations in includes 4 5 WebKit/qt/API and WebKit/qt/WebCoreSupport should not be included 6 in the webcore.prf, but rather in each target that specificly needs 7 headers in these location. We used to include them directly in webcore 8 since we had layering violations between WebCore and WebKit, but now 9 that they are gone there's no reason to do that. 10 11 Reviewed by Simon Hausmann. 12 13 * DumpRenderTree/qt/DumpRenderTree.pro: 14 * QtTestBrowser/launcherwindow.h: 15 * WebKitTestRunner/InjectedBundle/Target.pri: 16 * qmake/mkspecs/features/webcore.prf: 17 * qmake/mkspecs/features/webkit2.prf: 18 1 19 2011-12-13 János Badics <dicska@gmail.com> 2 20 -
trunk/Tools/DumpRenderTree/qt/DumpRenderTree.pro
r101493 r102679 17 17 CONFIG += qtwebkit 18 18 19 INCLUDEPATH += $$PWD/.. 19 INCLUDEPATH += \ 20 $$PWD/.. \ 21 $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WebCoreSupport 20 22 21 23 !embedded: PKGCONFIG += fontconfig -
trunk/Tools/QtTestBrowser/launcherwindow.h
r99274 r102679 57 57 #include <qwebsettings.h> 58 58 59 #include "DumpRenderTreeSupportQt.h"60 59 #include "mainwindow.h" 61 60 #include "urlloader.h" -
trunk/Tools/WebKitTestRunner/InjectedBundle/Target.pri
r101247 r102679 63 63 $$PWD/.. \ 64 64 $$PWD/Bindings \ 65 $${ROOT_WEBKIT_DIR}/Source/WebCore/testing/js 65 $${ROOT_WEBKIT_DIR}/Source/WebCore/testing/js \ 66 $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WebCoreSupport 66 67 67 68 PREFIX_HEADER = $$PWD/../WebKitTestRunnerPrefix.h -
trunk/Tools/qmake/mkspecs/features/webcore.prf
r102237 r102679 113 113 $$SOURCE_DIR/WebCore/platform/network/qt \ 114 114 $$SOURCE_DIR/WebCore/platform/qt \ 115 $$SOURCE_DIR/WebKit/qt/Api \116 $$SOURCE_DIR/WebKit/qt/WebCoreSupport \117 115 $$WEBCORE_INCLUDEPATH 118 116 -
trunk/Tools/qmake/mkspecs/features/webkit2.prf
r102363 r102679 65 65 $$SOURCE_DIR/WebKit2/PluginProcess 66 66 67 # The WebKit2 Qt APIs depend on qwebkitglobal.h, which lives in WebKit 68 WEBKIT2_INCLUDEPATH += $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/Api 69 67 70 INCLUDEPATH = $$WEBKIT2_INCLUDEPATH $$WEBKIT2_GENERATED_SOURCES_DIR $$INCLUDEPATH 68 71
Note:
See TracChangeset
for help on using the changeset viewer.