summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/WebCore.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/webkit/WebCore/WebCore.pro')
-rw-r--r--src/3rdparty/webkit/WebCore/WebCore.pro1149
1 files changed, 1057 insertions, 92 deletions
diff --git a/src/3rdparty/webkit/WebCore/WebCore.pro b/src/3rdparty/webkit/WebCore/WebCore.pro
index b0b0290b2..e49ab1344 100644
--- a/src/3rdparty/webkit/WebCore/WebCore.pro
+++ b/src/3rdparty/webkit/WebCore/WebCore.pro
@@ -34,15 +34,9 @@ unix {
lessThan(QT_MINOR_VERSION, 4): QMAKE_PKGCONFIG_REQUIRES += QtXml
}
-include($$OUTPUT_DIR/config.pri)
-
CONFIG -= warn_on
*-g++*:QMAKE_CXXFLAGS += -Wreturn-type -fno-strict-aliasing
-# Disable a few warnings on Windows. The warnings are also
-# disabled in WebKitLibraries/win/tools/vsprops/common.vsprops
-!win32-g++:win32-*: QMAKE_CXXFLAGS += -wd4291 -wd4344
-
unix:!mac:*-g++*:QMAKE_CXXFLAGS += -ffunction-sections -fdata-sections
unix:!mac:*-g++*:QMAKE_LFLAGS += -Wl,--gc-sections
@@ -82,6 +76,9 @@ win32-g++ {
QMAKE_LIBDIR_POST += $$split(TMPPATH,";")
}
+# Assume that symbian OS always comes with sqlite
+symbian:!CONFIG(QTDIR_build): CONFIG += system-sqlite
+
# Try to locate sqlite3 source
CONFIG(QTDIR_build) {
SQLITE3SRCDIR = $$QT_SOURCE_TREE/src/3rdparty/sqlite/
@@ -126,6 +123,7 @@ contains(DEFINES, ENABLE_SINGLE_THREADED=1) {
!contains(DEFINES, ENABLE_SHARED_WORKERS=.): DEFINES += ENABLE_SHARED_WORKERS=0
!contains(DEFINES, ENABLE_WORKERS=.): DEFINES += ENABLE_WORKERS=1
!contains(DEFINES, ENABLE_XHTMLMP=.): DEFINES += ENABLE_XHTMLMP=0
+!contains(DEFINES, ENABLE_DATAGRID=.): DEFINES += ENABLE_DATAGRID=1
# SVG support
!contains(DEFINES, ENABLE_SVG=0) {
@@ -139,6 +137,9 @@ contains(DEFINES, ENABLE_SINGLE_THREADED=1) {
DEFINES += ENABLE_SVG_FONTS=0 ENABLE_SVG_FOREIGN_OBJECT=0 ENABLE_SVG_ANIMATION=0 ENABLE_SVG_AS_IMAGE=0 ENABLE_SVG_USE=0
}
+# HTML5 ruby support
+!contains(DEFINES, ENABLE_RUBY=.): DEFINES += ENABLE_RUBY=1
+
# HTML5 media support
!contains(DEFINES, ENABLE_VIDEO=.) {
contains(QT_CONFIG, phonon):DEFINES += ENABLE_VIDEO=1
@@ -162,65 +163,62 @@ CONFIG(compute_defaults) {
error("Done computing defaults")
}
-# Ensure that we pick up WebCore's config.h over JavaScriptCore's
-INCLUDEPATH = $$PWD $$INCLUDEPATH
-
-include($$PWD/../JavaScriptCore/JavaScriptCore.pri)
-
RESOURCES += \
$$PWD/../WebCore/inspector/front-end/WebKit.qrc \
$$PWD/../WebCore/WebCore.qrc
-INCLUDEPATH += \
- $$PWD/platform/qt \
- $$PWD/platform/network/qt \
+
+include($$PWD/../JavaScriptCore/JavaScriptCore.pri)
+
+INCLUDEPATH = \
+ $$PWD \
+ $$PWD/accessibility \
+ $$PWD/bindings/js \
+ $$PWD/bridge \
+ $$PWD/bridge/c \
+ $$PWD/css \
+ $$PWD/dom \
+ $$PWD/dom/default \
+ $$PWD/editing \
+ $$PWD/history \
+ $$PWD/html \
+ $$PWD/inspector \
+ $$PWD/loader \
+ $$PWD/loader/appcache \
+ $$PWD/loader/archive \
+ $$PWD/loader/icon \
+ $$PWD/page \
+ $$PWD/page/animation \
+ $$PWD/platform \
+ $$PWD/platform/animation \
+ $$PWD/platform/graphics \
$$PWD/platform/graphics/filters \
$$PWD/platform/graphics/transforms \
- $$PWD/platform/graphics/qt \
+ $$PWD/platform/image-decoders \
+ $$PWD/platform/network \
+ $$PWD/platform/sql \
+ $$PWD/platform/text \
+ $$PWD/plugins \
+ $$PWD/rendering \
+ $$PWD/rendering/style \
+ $$PWD/storage \
+ $$PWD/svg \
+ $$PWD/svg/animation \
+ $$PWD/svg/graphics \
+ $$PWD/svg/graphics/filters \
+ $$PWD/wml \
+ $$PWD/workers \
+ $$PWD/xml \
+ $$GENERATED_SOURCES_DIR \
+ $$INCLUDEPATH
+
+INCLUDEPATH = \
+ $$PWD/bridge/qt \
$$PWD/page/qt \
+ $$PWD/platform/graphics/qt \
+ $$PWD/platform/network/qt \
+ $$PWD/platform/qt \
$$PWD/../WebKit/qt/WebCoreSupport \
-
-# Make sure storage/ appears before JavaScriptCore/. Both provide LocalStorage.h
-# but the header from the former include path is included across directories while
-# LocalStorage.h is included only from files within the same directory
-INCLUDEPATH = $$PWD/storage $$INCLUDEPATH
-
-INCLUDEPATH += $$PWD/accessibility \
- $$PWD/ForwardingHeaders \
- $$PWD/platform \
- $$PWD/platform/animation \
- $$PWD/platform/network \
- $$PWD/platform/graphics \
- $$PWD/svg/animation \
- $$PWD/svg/graphics \
- $$PWD/svg/graphics/filters \
- $$PWD/platform/sql \
- $$PWD/platform/text \
- $$PWD/loader \
- $$PWD/loader/appcache \
- $$PWD/loader/archive \
- $$PWD/loader/icon \
- $$PWD/css \
- $$PWD/dom \
- $$PWD/dom/default \
- $$PWD/page \
- $$PWD/page/animation \
- $$PWD/editing \
- $$PWD/rendering \
- $$PWD/rendering/style \
- $$PWD/history \
- $$PWD/inspector \
- $$PWD/xml \
- $$PWD/html \
- $$PWD/wml \
- $$PWD/workers \
- $$PWD/bindings/js \
- $$PWD/svg \
- $$PWD/platform/image-decoders \
- $$PWD/plugins \
- $$PWD/bridge \
- $$PWD/bridge/c \
- $$PWD/bridge/qt
-INCLUDEPATH *= $$GENERATED_SOURCES_DIR
+ $$INCLUDEPATH
QT += network
lessThan(QT_MINOR_VERSION, 4): QT += xml
@@ -263,7 +261,6 @@ STYLESHEETS_EMBED = \
DOMLUT_FILES += \
bindings/js/JSDOMWindowBase.cpp \
- bindings/js/JSRGBColor.cpp \
bindings/js/JSWorkerContextBase.cpp
IDL_BINDINGS += \
@@ -284,6 +281,7 @@ IDL_BINDINGS += \
css/CSSVariablesDeclaration.idl \
css/CSSVariablesRule.idl \
css/MediaList.idl \
+ css/RGBColor.idl \
css/Rect.idl \
css/StyleSheet.idl \
css/StyleSheetList.idl \
@@ -306,6 +304,7 @@ IDL_BINDINGS += \
dom/Element.idl \
dom/Entity.idl \
dom/EntityReference.idl \
+ dom/ErrorEvent.idl \
dom/Event.idl \
dom/EventException.idl \
# dom/EventListener.idl \
@@ -414,7 +413,7 @@ IDL_BINDINGS += \
html/TextMetrics.idl \
html/ValidityState.idl \
html/VoidCallback.idl \
- inspector/InspectorController.idl \
+ inspector/InspectorBackend.idl \
page/BarInfo.idl \
page/Console.idl \
page/Coordinates.idl \
@@ -501,8 +500,8 @@ SOURCES += \
bindings/js/JSImageConstructor.cpp \
bindings/js/JSImageDataCustom.cpp \
bindings/js/JSInspectedObjectWrapper.cpp \
+ bindings/js/JSInspectorBackendCustom.cpp \
bindings/js/JSInspectorCallbackWrapper.cpp \
- bindings/js/JSInspectorControllerCustom.cpp \
bindings/js/JSLocationCustom.cpp \
bindings/js/JSNamedNodeMapCustom.cpp \
bindings/js/JSNamedNodesCollection.cpp \
@@ -514,7 +513,6 @@ SOURCES += \
bindings/js/JSNodeListCustom.cpp \
bindings/js/JSOptionConstructor.cpp \
bindings/js/JSQuarantinedObjectWrapper.cpp \
- bindings/js/JSRGBColor.cpp \
bindings/js/JSStyleSheetCustom.cpp \
bindings/js/JSStyleSheetListCustom.cpp \
bindings/js/JSTextCustom.cpp \
@@ -534,6 +532,7 @@ SOURCES += \
bindings/js/JSEventListener.cpp \
bindings/js/JSLazyEventListener.cpp \
bindings/js/JSPluginElementFunctions.cpp \
+ bindings/js/ScriptArray.cpp \
bindings/js/ScriptCachedFrameData.cpp \
bindings/js/ScriptCallFrame.cpp \
bindings/js/ScriptCallStack.cpp \
@@ -606,6 +605,7 @@ SOURCES += \
css/MediaQuery.cpp \
css/MediaQueryEvaluator.cpp \
css/MediaQueryExp.cpp \
+ css/RGBColor.cpp \
css/ShadowValue.cpp \
css/StyleBase.cpp \
css/StyleList.cpp \
@@ -642,6 +642,7 @@ SOURCES += \
dom/Element.cpp \
dom/Entity.cpp \
dom/EntityReference.cpp \
+ dom/ErrorEvent.cpp \
dom/Event.cpp \
dom/EventNames.cpp \
dom/EventTarget.cpp \
@@ -845,6 +846,7 @@ SOURCES += \
html/PreloadScanner.cpp \
html/ValidityState.cpp \
inspector/ConsoleMessage.cpp \
+ inspector/InspectorBackend.cpp \
inspector/InspectorDatabaseResource.cpp \
inspector/InspectorDOMStorageResource.cpp \
inspector/InspectorController.cpp \
@@ -881,6 +883,7 @@ SOURCES += \
loader/MediaDocument.cpp \
loader/NavigationAction.cpp \
loader/NetscapePlugInStreamLoader.cpp \
+ loader/PlaceholderDocument.cpp \
loader/PluginDocument.cpp \
loader/ProgressTracker.cpp \
loader/Request.cpp \
@@ -998,7 +1001,6 @@ SOURCES += \
platform/Scrollbar.cpp \
platform/ScrollbarThemeComposite.cpp \
platform/ScrollView.cpp \
-# platform/SearchPopupMenu.cpp \
platform/text/SegmentedString.cpp \
platform/SharedBuffer.cpp \
platform/text/String.cpp \
@@ -1018,6 +1020,7 @@ SOURCES += \
platform/text/UnicodeRange.cpp \
platform/Widget.cpp \
plugins/PluginDatabase.cpp \
+ plugins/PluginDebug.cpp \
plugins/PluginInfoStore.cpp \
plugins/PluginPackage.cpp \
plugins/PluginStream.cpp \
@@ -1115,17 +1118,953 @@ SOURCES += \
xml/XMLSerializer.cpp
HEADERS += \
- $$PWD/platform/graphics/qt/StillImageQt.h \
- $$PWD/platform/qt/QWebPopup.h \
+ accessibility/AccessibilityARIAGridCell.h \
+ accessibility/AccessibilityARIAGrid.h \
+ accessibility/AccessibilityARIAGridRow.h \
+ accessibility/AccessibilityImageMapLink.h \
+ accessibility/AccessibilityListBox.h \
+ accessibility/AccessibilityListBoxOption.h \
+ accessibility/AccessibilityList.h \
+ accessibility/AccessibilityObject.h \
+ accessibility/AccessibilityRenderObject.h \
+ accessibility/AccessibilityTableCell.h \
+ accessibility/AccessibilityTableColumn.h \
+ accessibility/AccessibilityTable.h \
+ accessibility/AccessibilityTableHeaderContainer.h \
+ accessibility/AccessibilityTableRow.h \
+ accessibility/AXObjectCache.h \
+ bindings/js/CachedScriptSourceProvider.h \
+ bindings/js/DOMObjectWithSVGContext.h \
+ bindings/js/GCController.h \
+ bindings/js/JSAudioConstructor.h \
+ bindings/js/JSCSSStyleDeclarationCustom.h \
+ bindings/js/JSCustomPositionCallback.h \
+ bindings/js/JSCustomPositionErrorCallback.h \
+ bindings/js/JSCustomSQLStatementCallback.h \
+ bindings/js/JSCustomSQLStatementErrorCallback.h \
+ bindings/js/JSCustomSQLTransactionCallback.h \
+ bindings/js/JSCustomSQLTransactionErrorCallback.h \
+ bindings/js/JSCustomVoidCallback.h \
+ bindings/js/JSCustomXPathNSResolver.h \
+ bindings/js/JSDataGridDataSource.h \
+ bindings/js/JSDOMBinding.h \
+ bindings/js/JSDOMGlobalObject.h \
+ bindings/js/JSDOMWindowBase.h \
+ bindings/js/JSDOMWindowBase.h \
+ bindings/js/JSDOMWindowCustom.h \
+ bindings/js/JSDOMWindowShell.h \
+ bindings/js/JSEventListener.h \
+ bindings/js/JSEventTarget.h \
+ bindings/js/JSHistoryCustom.h \
+ bindings/js/JSHTMLAllCollection.h \
+ bindings/js/JSHTMLAppletElementCustom.h \
+ bindings/js/JSHTMLEmbedElementCustom.h \
+ bindings/js/JSHTMLInputElementCustom.h \
+ bindings/js/JSHTMLObjectElementCustom.h \
+ bindings/js/JSHTMLSelectElementCustom.h \
+ bindings/js/JSImageConstructor.h \
+ bindings/js/JSInspectedObjectWrapper.h \
+ bindings/js/JSInspectorCallbackWrapper.h \
+ bindings/js/JSLazyEventListener.h \
+ bindings/js/JSLocationCustom.h \
+ bindings/js/JSMessageChannelConstructor.h \
+ bindings/js/JSNamedNodesCollection.h \
+ bindings/js/JSNodeFilterCondition.h \
+ bindings/js/JSOptionConstructor.h \
+ bindings/js/JSPluginElementFunctions.h \
+ bindings/js/JSQuarantinedObjectWrapper.h \
+ bindings/js/JSSharedWorkerConstructor.h \
+ bindings/js/JSStorageCustom.h \
+ bindings/js/JSWebKitCSSMatrixConstructor.h \
+ bindings/js/JSWebKitPointConstructor.h \
+ bindings/js/JSWorkerConstructor.h \
+ bindings/js/JSWorkerContextBase.h \
+ bindings/js/JSWorkerContextBase.h \
+ bindings/js/JSXMLHttpRequestConstructor.h \
+ bindings/js/JSXSLTProcessorConstructor.h \
+ bindings/js/ScheduledAction.h \
+ bindings/js/ScriptArray.h \
+ bindings/js/ScriptCachedFrameData.h \
+ bindings/js/ScriptCallFrame.h \
+ bindings/js/ScriptCallStack.h \
+ bindings/js/ScriptController.h \
+ bindings/js/ScriptEventListener.h \
+ bindings/js/ScriptFunctionCall.h \
+ bindings/js/ScriptObject.h \
+ bindings/js/ScriptObjectQuarantine.h \
+ bindings/js/ScriptSourceCode.h \
+ bindings/js/ScriptSourceProvider.h \
+ bindings/js/ScriptState.h \
+ bindings/js/ScriptValue.h \
+ bindings/js/StringSourceProvider.h \
+ bindings/js/WorkerScriptController.h \
+ bridge/c/c_class.h \
+ bridge/c/c_instance.h \
+ bridge/c/c_runtime.h \
+ bridge/c/c_utility.h \
+ bridge/IdentifierRep.h \
+ bridge/NP_jsobject.h \
+ bridge/npruntime.h \
+ bridge/qt/qt_class.h \
+ bridge/qt/qt_instance.h \
+ bridge/qt/qt_runtime.h \
+ bridge/runtime_array.h \
+ bridge/runtime.h \
+ bridge/runtime_method.h \
+ bridge/runtime_object.h \
+ bridge/runtime_root.h \
+ css/CSSBorderImageValue.h \
+ css/CSSCanvasValue.h \
+ css/CSSCharsetRule.h \
+ css/CSSComputedStyleDeclaration.h \
+ css/CSSCursorImageValue.h \
+ css/CSSFontFace.h \
+ css/CSSFontFaceRule.h \
+ css/CSSFontFaceSource.h \
+ css/CSSFontFaceSrcValue.h \
+ css/CSSFontSelector.h \
+ css/CSSFunctionValue.h \
+ css/CSSGradientValue.h \
+ css/CSSHelper.h \
+ css/CSSImageGeneratorValue.h \
+ css/CSSImageValue.h \
+ css/CSSImportRule.h \
+ css/CSSInheritedValue.h \
+ css/CSSInitialValue.h \
+ css/CSSMediaRule.h \
+ css/CSSMutableStyleDeclaration.h \
+ css/CSSPageRule.h \
+ css/CSSParser.h \
+ css/CSSParserValues.h \
+ css/CSSPrimitiveValue.h \
+ css/CSSProperty.h \
+ css/CSSPropertyLonghand.h \
+ css/CSSReflectValue.h \
+ css/CSSRule.h \
+ css/CSSRuleList.h \
+ css/CSSSegmentedFontFace.h \
+ css/CSSSelector.h \
+ css/CSSSelectorList.h \
+ css/CSSStyleDeclaration.h \
+ css/CSSStyleRule.h \
+ css/CSSStyleSelector.h \
+ css/CSSStyleSheet.h \
+ css/CSSTimingFunctionValue.h \
+ css/CSSUnicodeRangeValue.h \
+ css/CSSValueList.h \
+ css/CSSVariableDependentValue.h \
+ css/CSSVariablesDeclaration.h \
+ css/CSSVariablesRule.h \
+ css/FontFamilyValue.h \
+ css/FontValue.h \
+ css/MediaFeatureNames.h \
+ css/MediaList.h \
+ css/MediaQueryEvaluator.h \
+ css/MediaQueryExp.h \
+ css/MediaQuery.h \
+ css/RGBColor.h \
+ css/ShadowValue.h \
+ css/StyleBase.h \
+ css/StyleList.h \
+ css/StyleSheet.h \
+ css/StyleSheetList.h \
+ css/WebKitCSSKeyframeRule.h \
+ css/WebKitCSSKeyframesRule.h \
+ css/WebKitCSSMatrix.h \
+ css/WebKitCSSTransformValue.h \
+ dom/ActiveDOMObject.h \
+ dom/Attr.h \
+ dom/Attribute.h \
+ dom/BeforeTextInsertedEvent.h \
+ dom/BeforeUnloadEvent.h \
+ dom/CDATASection.h \
+ dom/CharacterData.h \
+ dom/CheckedRadioButtons.h \
+ dom/ChildNodeList.h \
+ dom/ClassNames.h \
+ dom/ClassNodeList.h \
+ dom/ClientRect.h \
+ dom/ClientRectList.h \
+ dom/ClipboardEvent.h \
+ dom/Clipboard.h \
+ dom/Comment.h \
+ dom/ContainerNode.h \
+ dom/CSSMappedAttributeDeclaration.h \
+ dom/default/PlatformMessagePortChannel.h \
+ dom/DocumentFragment.h \
+ dom/Document.h \
+ dom/DocumentType.h \
+ dom/DOMImplementation.h \
+ dom/DynamicNodeList.h \
+ dom/EditingText.h \
+ dom/Element.h \
+ dom/Entity.h \
+ dom/EntityReference.h \
+ dom/Event.h \
+ dom/EventNames.h \
+ dom/EventTarget.h \
+ dom/ExceptionBase.h \
+ dom/ExceptionCode.h \
+ dom/InputElement.h \
+ dom/KeyboardEvent.h \
+ dom/MappedAttribute.h \
+ dom/MessageChannel.h \
+ dom/MessageEvent.h \
+ dom/MessagePortChannel.h \
+ dom/MessagePort.h \
+ dom/MouseEvent.h \
+ dom/MouseRelatedEvent.h \
+ dom/MutationEvent.h \
+ dom/NamedAttrMap.h \
+ dom/NamedMappedAttrMap.h \
+ dom/NameNodeList.h \
+ dom/NodeFilterCondition.h \
+ dom/NodeFilter.h \
+ dom/Node.h \
+ dom/NodeIterator.h \
+ dom/Notation.h \
+ dom/OptionElement.h \
+ dom/OptionGroupElement.h \
+ dom/OverflowEvent.h \
+ dom/Position.h \
+ dom/PositionIterator.h \
+ dom/ProcessingInstruction.h \
+ dom/ProgressEvent.h \
+ dom/QualifiedName.h \
+ dom/Range.h \
+ dom/RegisteredEventListener.h \
+ dom/ScriptElement.h \
+ dom/ScriptExecutionContext.h \
+ dom/SelectElement.h \
+ dom/SelectorNodeList.h \
+ dom/StaticNodeList.h \
+ dom/StyledElement.h \
+ dom/StyleElement.h \
+ dom/TagNodeList.h \
+ dom/TextEvent.h \
+ dom/Text.h \
+ dom/Traversal.h \
+ dom/TreeWalker.h \
+ dom/UIEvent.h \
+ dom/UIEventWithKeyState.h \
+ dom/WebKitAnimationEvent.h \
+ dom/WebKitTransitionEvent.h \
+ dom/WheelEvent.h \
+ dom/XMLTokenizer.h \
+ dom/XMLTokenizerScope.h \
+ editing/AppendNodeCommand.h \
+ editing/ApplyStyleCommand.h \
+ editing/BreakBlockquoteCommand.h \
+ editing/CompositeEditCommand.h \
+ editing/CreateLinkCommand.h \
+ editing/DeleteButtonController.h \
+ editing/DeleteButton.h \
+ editing/DeleteFromTextNodeCommand.h \
+ editing/DeleteSelectionCommand.h \
+ editing/EditCommand.h \
+ editing/Editor.h \
+ editing/FormatBlockCommand.h \
+ editing/htmlediting.h \
+ editing/HTMLInterchange.h \
+ editing/IndentOutdentCommand.h \
+ editing/InsertIntoTextNodeCommand.h \
+ editing/InsertLineBreakCommand.h \
+ editing/InsertListCommand.h \
+ editing/InsertNodeBeforeCommand.h \
+ editing/InsertParagraphSeparatorCommand.h \
+ editing/InsertTextCommand.h \
+ editing/JoinTextNodesCommand.h \
+ editing/markup.h \
+ editing/MergeIdenticalElementsCommand.h \
+ editing/ModifySelectionListLevel.h \
+ editing/MoveSelectionCommand.h \
+ editing/RemoveCSSPropertyCommand.h \
+ editing/RemoveFormatCommand.h \
+ editing/RemoveNodeCommand.h \
+ editing/RemoveNodePreservingChildrenCommand.h \
+ editing/ReplaceNodeWithSpanCommand.h \
+ editing/ReplaceSelectionCommand.h \
+ editing/SelectionController.h \
+ editing/SetNodeAttributeCommand.h \
+ editing/SmartReplace.h \
+ editing/SplitElementCommand.h \
+ editing/SplitTextNodeCommand.h \
+ editing/SplitTextNodeContainingElementCommand.h \
+ editing/TextIterator.h \
+ editing/TypingCommand.h \
+ editing/UnlinkCommand.h \
+ editing/VisiblePosition.h \
+ editing/VisibleSelection.h \
+ editing/visible_units.h \
+ editing/WrapContentsInDummySpanCommand.h \
+ history/BackForwardList.h \
+ history/CachedFrame.h \
+ history/CachedPage.h \
+ history/HistoryItem.h \
+ history/PageCache.h \
+ html/CanvasGradient.h \
+ html/CanvasPattern.h \
+ html/CanvasPixelArray.h \
+ html/CanvasRenderingContext2D.h \
+ html/CanvasStyle.h \
+ html/CollectionCache.h \
+ html/DataGridColumn.h \
+ html/DataGridColumnList.h \
+ html/DOMDataGridDataSource.h \
+ html/File.h \
+ html/FileList.h \
+ html/FormDataList.h \
+ html/HTMLAnchorElement.h \
+ html/HTMLAppletElement.h \
+ html/HTMLAreaElement.h \
+ html/HTMLAudioElement.h \
+ html/HTMLBaseElement.h \
+ html/HTMLBaseFontElement.h \
+ html/HTMLBlockquoteElement.h \
+ html/HTMLBodyElement.h \
+ html/HTMLBRElement.h \
+ html/HTMLButtonElement.h \
+ html/HTMLCanvasElement.h \
+ html/HTMLCollection.h \
+ html/HTMLDataGridCellElement.h \
+ html/HTMLDataGridColElement.h \
+ html/HTMLDataGridElement.h \
+ html/HTMLDataGridRowElement.h \
+ html/HTMLDirectoryElement.h \
+ html/HTMLDivElement.h \
+ html/HTMLDListElement.h \
+ html/HTMLDocument.h \
+ html/HTMLElement.h \
+ html/HTMLEmbedElement.h \
+ html/HTMLFieldSetElement.h \
+ html/HTMLFontElement.h \
+ html/HTMLFormCollection.h \
+ html/HTMLFormControlElement.h \
+ html/HTMLFormElement.h \
+ html/HTMLFrameElementBase.h \
+ html/HTMLFrameElement.h \
+ html/HTMLFrameOwnerElement.h \
+ html/HTMLFrameSetElement.h \
+ html/HTMLHeadElement.h \
+ html/HTMLHeadingElement.h \
+ html/HTMLHRElement.h \
+ html/HTMLHtmlElement.h \
+ html/HTMLIFrameElement.h \
+ html/HTMLImageElement.h \
+ html/HTMLImageLoader.h \
+ html/HTMLInputElement.h \
+ html/HTMLIsIndexElement.h \
+ html/HTMLKeygenElement.h \
+ html/HTMLLabelElement.h \
+ html/HTMLLegendElement.h \
+ html/HTMLLIElement.h \
+ html/HTMLLinkElement.h \
+ html/HTMLMapElement.h \
+ html/HTMLMarqueeElement.h \
+ html/HTMLMediaElement.h \
+ html/HTMLMenuElement.h \
+ html/HTMLMetaElement.h \
+ html/HTMLModElement.h \
+ html/HTMLNameCollection.h \
+ html/HTMLNoScriptElement.h \
+ html/HTMLObjectElement.h \
+ html/HTMLOListElement.h \
+ html/HTMLOptGroupElement.h \
+ html/HTMLOptionElement.h \
+ html/HTMLOptionsCollection.h \
+ html/HTMLParagraphElement.h \
+ html/HTMLParamElement.h \
+ html/HTMLParserErrorCodes.h \
+ html/HTMLParser.h \
+ html/HTMLPlugInElement.h \
+ html/HTMLPlugInImageElement.h \
+ html/HTMLPreElement.h \
+ html/HTMLQuoteElement.h \
+ html/HTMLScriptElement.h \
+ html/HTMLSelectElement.h \
+ html/HTMLSourceElement.h \
+ html/HTMLStyleElement.h \
+ html/HTMLTableCaptionElement.h \
+ html/HTMLTableCellElement.h \
+ html/HTMLTableColElement.h \
+ html/HTMLTableElement.h \
+ html/HTMLTablePartElement.h \
+ html/HTMLTableRowElement.h \
+ html/HTMLTableRowsCollection.h \
+ html/HTMLTableSectionElement.h \
+ html/HTMLTextAreaElement.h \
+ html/HTMLTitleElement.h \
+ html/HTMLTokenizer.h \
+ html/HTMLUListElement.h \
+ html/HTMLVideoElement.h \
+ html/HTMLViewSourceDocument.h \
+ html/ImageData.h \
+ html/PreloadScanner.h \
+ html/TimeRanges.h \
+ html/ValidityState.h \
+ inspector/ConsoleMessage.h \
+ inspector/InspectorBackend.h \
+ inspector/InspectorController.h \
+ inspector/InspectorDatabaseResource.h \
+ inspector/InspectorDOMStorageResource.h \
+ inspector/InspectorFrontend.h \
+ inspector/InspectorJSONObject.h \
+ inspector/InspectorResource.h \
+ inspector/JavaScriptCallFrame.h \
+ inspector/JavaScriptDebugServer.h \
+ inspector/JavaScriptProfile.h \
+ inspector/JavaScriptProfileNode.h \
+ loader/appcache/ApplicationCacheGroup.h \
+ loader/appcache/ApplicationCache.h \
+ loader/appcache/ApplicationCacheResource.h \
+ loader/appcache/ApplicationCacheStorage.h \
+ loader/appcache/DOMApplicationCache.h \
+ loader/appcache/ManifestParser.h \
+ loader/archive/ArchiveFactory.h \
+ loader/archive/ArchiveResourceCollection.h \
+ loader/archive/ArchiveResource.h \
+ loader/CachedCSSStyleSheet.h \
+ loader/CachedFont.h \
+ loader/CachedImage.h \
+ loader/CachedResourceClientWalker.h \
+ loader/CachedResource.h \
+ loader/CachedResourceHandle.h \
+ loader/CachedScript.h \
+ loader/CachedXSLStyleSheet.h \
+ loader/Cache.h \
+ loader/CrossOriginAccessControl.h \
+ loader/CrossOriginPreflightResultCache.h \
+ loader/DocLoader.h \
+ loader/DocumentLoader.h \
+ loader/DocumentThreadableLoader.h \
+ loader/FormState.h \
+ loader/FrameLoader.h \
+ loader/FTPDirectoryDocument.h \
+ loader/FTPDirectoryParser.h \
+ loader/icon/IconDatabase.h \
+ loader/icon/IconLoader.h \
+ loader/icon/IconRecord.h \
+ loader/icon/PageURLRecord.h \
+ loader/ImageDocument.h \
+ loader/ImageLoader.h \
+ loader/loader.h \
+ loader/MainResourceLoader.h \
+ loader/MediaDocument.h \
+ loader/NavigationAction.h \
+ loader/NetscapePlugInStreamLoader.h \
+ loader/PlaceholderDocument.h \
+ loader/PluginDocument.h \
+ loader/ProgressTracker.h \
+ loader/Request.h \
+ loader/ResourceLoader.h \
+ loader/SubresourceLoader.h \
+ loader/TextDocument.h \
+ loader/TextResourceDecoder.h \
+ loader/ThreadableLoader.h \
+ loader/UserStyleSheetLoader.h \
+ loader/WorkerThreadableLoader.h \
+ page/animation/AnimationBase.h \
+ page/animation/AnimationController.h \
+ page/animation/CompositeAnimation.h \
+ page/animation/ImplicitAnimation.h \
+ page/animation/KeyframeAnimation.h \
+ page/BarInfo.h \
+ page/Chrome.h \
+ page/Console.h \
+ page/ContextMenuController.h \
+ page/Coordinates.h \
+ page/DOMSelection.h \
+ page/DOMTimer.h \
+ page/DOMWindow.h \
+ page/DragController.h \
+ page/EventHandler.h \
+ page/FocusController.h \
+ page/Frame.h \
+ page/FrameTree.h \
+ page/FrameView.h \
+ page/Geolocation.h \
+ page/Geoposition.h \
+ page/History.h \
+ page/Location.h \
+ page/MouseEventWithHitTestResults.h \
+ page/NavigatorBase.h \
+ page/Navigator.h \
+ page/PageGroup.h \
+ page/PageGroupLoadDeferrer.h \
+ page/Page.h \
+ page/PrintContext.h \
+ page/Screen.h \
+ page/SecurityOrigin.h \
+ page/Settings.h \
+ page/WindowFeatures.h \
+ page/WorkerNavigator.h \
+ page/XSSAuditor.h \
+ platform/animation/Animation.h \
+ platform/animation/AnimationList.h \
+ platform/Arena.h \
+ platform/ContentType.h \
+ platform/ContextMenu.h \
+ platform/CrossThreadCopier.h \
+ platform/DeprecatedPtrListImpl.h \
+ platform/DragData.h \
+ platform/DragImage.h \
+ platform/FileChooser.h \
+ platform/GeolocationService.h \
+ platform/graphics/BitmapImage.h \
+ platform/graphics/Color.h \
+ platform/graphics/filters/FEBlend.h \
+ platform/graphics/filters/FEColorMatrix.h \
+ platform/graphics/filters/FEComponentTransfer.h \
+ platform/graphics/filters/FEComposite.h \
+ platform/graphics/filters/FilterEffect.h \
+ platform/graphics/filters/SourceAlpha.h \
+ platform/graphics/filters/SourceGraphic.h \
+ platform/graphics/FloatPoint3D.h \
+ platform/graphics/FloatPoint.h \
+ platform/graphics/FloatQuad.h \
+ platform/graphics/FloatRect.h \
+ platform/graphics/FloatSize.h \
+ platform/graphics/FontData.h \
+ platform/graphics/FontDescription.h \
+ platform/graphics/FontFamily.h \
+ platform/graphics/Font.h \
+ platform/graphics/GeneratedImage.h \
+ platform/graphics/Gradient.h \
+ platform/graphics/GraphicsContext.h \
+ platform/graphics/GraphicsTypes.h \
+ platform/graphics/Image.h \
+ platform/graphics/IntRect.h \
+ platform/graphics/MediaPlayer.h \
+ platform/graphics/Path.h \
+ platform/graphics/PathTraversalState.h \
+ platform/graphics/Pattern.h \
+ platform/graphics/Pen.h \
+ platform/graphics/qt/FontCustomPlatformData.h \
+ platform/graphics/qt/ImageDecoderQt.h \
+ platform/graphics/qt/StillImageQt.h \
+ platform/graphics/SegmentedFontData.h \
+ platform/graphics/SimpleFontData.h \
+ platform/graphics/transforms/Matrix3DTransformOperation.h \
+ platform/graphics/transforms/MatrixTransformOperation.h \
+ platform/graphics/transforms/PerspectiveTransformOperation.h \
+ platform/graphics/transforms/RotateTransformOperation.h \
+ platform/graphics/transforms/ScaleTransformOperation.h \
+ platform/graphics/transforms/SkewTransformOperation.h \
+ platform/graphics/transforms/TransformationMatrix.h \
+ platform/graphics/transforms/TransformOperations.h \
+ platform/graphics/transforms/TranslateTransformOperation.h \
+ platform/KURL.h \
+ platform/Length.h \
+ platform/LinkHash.h \
+ platform/Logging.h \
+ platform/MIMETypeRegistry.h \
+ platform/network/AuthenticationChallengeBase.h \
+ platform/network/Credential.h \
+ platform/network/FormDataBuilder.h \
+ platform/network/FormData.h \
+ platform/network/HTTPHeaderMap.h \
+ platform/network/HTTPParsers.h \
+ platform/network/NetworkStateNotifier.h \
+ platform/network/ProtectionSpace.h \
+ platform/network/qt/QNetworkReplyHandler.h \
+ platform/network/ResourceErrorBase.h \
+ platform/network/ResourceHandle.h \
+ platform/network/ResourceRequestBase.h \
+ platform/network/ResourceResponseBase.h \
+ platform/qt/ClipboardQt.h \
+ platform/qt/QWebPopup.h \
+ platform/qt/RenderThemeQt.h \
+ platform/qt/ScrollbarThemeQt.h \
+ platform/Scrollbar.h \
+ platform/ScrollbarThemeComposite.h \
+ platform/ScrollView.h \
+ platform/SharedBuffer.h \
+ platform/sql/SQLiteDatabase.h \
+ platform/sql/SQLiteFileSystem.h \
+ platform/sql/SQLiteStatement.h \
+ platform/sql/SQLiteTransaction.h \
+ platform/sql/SQLValue.h \
+ platform/text/AtomicString.h \
+ platform/text/Base64.h \
+ platform/text/BidiContext.h \
+ platform/text/CString.h \
+ platform/text/qt/TextCodecQt.h \
+ platform/text/RegularExpression.h \
+ platform/text/SegmentedString.h \
+ platform/text/StringBuilder.h \
+ platform/text/StringImpl.h \
+ platform/text/TextCodec.h \
+ platform/text/TextCodecLatin1.h \
+ platform/text/TextCodecUserDefined.h \
+ platform/text/TextCodecUTF16.h \
+ platform/text/TextEncoding.h \
+ platform/text/TextEncodingRegistry.h \
+ platform/text/TextStream.h \
+ platform/text/UnicodeRange.h \
+ platform/ThreadGlobalData.h \
+ platform/ThreadTimers.h \
+ platform/Timer.h \
+ platform/Widget.h \
+ plugins/MimeTypeArray.h \
+ plugins/MimeType.h \
+ plugins/PluginArray.h \
+ plugins/PluginDatabase.h \
+ plugins/PluginData.h \
+ plugins/PluginDebug.h \
+ plugins/Plugin.h \
+ plugins/PluginInfoStore.h \
+ plugins/PluginMainThreadScheduler.h \
+ plugins/PluginPackage.h \
+ plugins/PluginStream.h \
+ plugins/PluginView.h \
+ plugins/win/PluginMessageThrottlerWin.h \
+ rendering/AutoTableLayout.h \
+ rendering/break_lines.h \
+ rendering/CounterNode.h \
+ rendering/EllipsisBox.h \
+ rendering/FixedTableLayout.h \
+ rendering/HitTestResult.h \
+ rendering/InlineBox.h \
+ rendering/InlineFlowBox.h \
+ rendering/InlineTextBox.h \
+ rendering/LayoutState.h \
+ rendering/MediaControlElements.h \
+ rendering/PointerEventsHitRules.h \
+ rendering/RenderApplet.h \
+ rendering/RenderArena.h \
+ rendering/RenderBlock.h \
+ rendering/RenderBox.h \
+ rendering/RenderBoxModelObject.h \
+ rendering/RenderBR.h \
+ rendering/RenderButton.h \
+ rendering/RenderCounter.h \
+ rendering/RenderDataGrid.h \
+ rendering/RenderFieldset.h \
+ rendering/RenderFileUploadControl.h \
+ rendering/RenderFlexibleBox.h \
+ rendering/RenderForeignObject.h \
+ rendering/RenderFrame.h \
+ rendering/RenderFrameSet.h \
+ rendering/RenderHTMLCanvas.h \
+ rendering/RenderImageGeneratedContent.h \
+ rendering/RenderImage.h \
+ rendering/RenderInline.h \
+ rendering/RenderLayer.h \
+ rendering/RenderLineBoxList.h \
+ rendering/RenderListBox.h \
+ rendering/RenderListItem.h \
+ rendering/RenderListMarker.h \
+ rendering/RenderMarquee.h \
+ rendering/RenderMedia.h \
+ rendering/RenderMenuList.h \
+ rendering/RenderObjectChildList.h \
+ rendering/RenderObject.h \
+ rendering/RenderPart.h \
+ rendering/RenderPartObject.h \
+ rendering/RenderPath.h \
+ rendering/RenderReplaced.h \
+ rendering/RenderReplica.h \
+ rendering/RenderScrollbar.h \
+ rendering/RenderScrollbarPart.h \
+ rendering/RenderScrollbarTheme.h \
+ rendering/RenderSlider.h \
+ rendering/RenderSVGBlock.h \
+ rendering/RenderSVGContainer.h \
+ rendering/RenderSVGGradientStop.h \
+ rendering/RenderSVGHiddenContainer.h \
+ rendering/RenderSVGImage.h \
+ rendering/RenderSVGInline.h \
+ rendering/RenderSVGInlineText.h \
+ rendering/RenderSVGModelObject.h \
+ rendering/RenderSVGRoot.h \
+ rendering/RenderSVGText.h \
+ rendering/RenderSVGTextPath.h \
+ rendering/RenderSVGTransformableContainer.h \
+ rendering/RenderSVGTSpan.h \
+ rendering/RenderSVGViewportContainer.h \
+ rendering/RenderTableCell.h \
+ rendering/RenderTableCol.h \
+ rendering/RenderTable.h \
+ rendering/RenderTableRow.h \
+ rendering/RenderTableSection.h \
+ rendering/RenderTextControl.h \
+ rendering/RenderTextControlMultiLine.h \
+ rendering/RenderTextControlSingleLine.h \
+ rendering/RenderTextFragment.h \
+ rendering/RenderText.h \
+ rendering/RenderTheme.h \
+ rendering/RenderTreeAsText.h \
+ rendering/RenderVideo.h \
+ rendering/RenderView.h \
+ rendering/RenderWidget.h \
+ rendering/RenderWordBreak.h \
+ rendering/RootInlineBox.h \
+ rendering/ScrollBehavior.h \
+ rendering/style/BindingURI.h \
+ rendering/style/ContentData.h \
+ rendering/style/CounterDirectives.h \
+ rendering/style/CursorData.h \
+ rendering/style/CursorList.h \
+ rendering/style/FillLayer.h \
+ rendering/style/KeyframeList.h \
+ rendering/style/NinePieceImage.h \
+ rendering/style/RenderStyle.h \
+ rendering/style/ShadowData.h \
+ rendering/style/StyleBackgroundData.h \
+ rendering/style/StyleBoxData.h \
+ rendering/style/StyleCachedImage.h \
+ rendering/style/StyleFlexibleBoxData.h \
+ rendering/style/StyleGeneratedImage.h \
+ rendering/style/StyleInheritedData.h \
+ rendering/style/StyleMarqueeData.h \
+ rendering/style/StyleMultiColData.h \
+ rendering/style/StyleRareInheritedData.h \
+ rendering/style/StyleRareNonInheritedData.h \
+ rendering/style/StyleReflection.h \
+ rendering/style/StyleSurroundData.h \
+ rendering/style/StyleTransformData.h \
+ rendering/style/StyleVisualData.h \
+ rendering/style/SVGRenderStyleDefs.h \
+ rendering/style/SVGRenderStyle.h \
+ rendering/SVGCharacterLayoutInfo.h \
+ rendering/SVGInlineFlowBox.h \
+ rendering/SVGInlineTextBox.h \
+ rendering/SVGRenderSupport.h \
+ rendering/SVGRenderTreeAsText.h \
+ rendering/SVGRootInlineBox.h \
+ rendering/TextControlInnerElements.h \
+ rendering/TransformState.h \
+ svg/animation/SMILTimeContainer.h \
+ svg/animation/SMILTime.h \
+ svg/animation/SVGSMILElement.h \
+ svg/ColorDistance.h \
+ svg/graphics/filters/SVGFEConvolveMatrix.h \
+ svg/graphics/filters/SVGFEDiffuseLighting.h \
+ svg/graphics/filters/SVGFEDisplacementMap.h \
+ svg/graphics/filters/SVGFEFlood.h \
+ svg/graphics/filters/SVGFEGaussianBlur.h \
+ svg/graphics/filters/SVGFEImage.h \
+ svg/graphics/filters/SVGFEMerge.h \
+ svg/graphics/filters/SVGFEMorphology.h \
+ svg/graphics/filters/SVGFEOffset.h \
+ svg/graphics/filters/SVGFESpecularLighting.h \
+ svg/graphics/filters/SVGFETile.h \
+ svg/graphics/filters/SVGFETurbulence.h \
+ svg/graphics/filters/SVGFilterBuilder.h \
+ svg/graphics/filters/SVGFilter.h \
+ svg/graphics/filters/SVGLightSource.h \
+ svg/graphics/SVGImage.h \
+ svg/graphics/SVGPaintServerGradient.h \
+ svg/graphics/SVGPaintServer.h \
+ svg/graphics/SVGPaintServerLinearGradient.h \
+ svg/graphics/SVGPaintServerPattern.h \
+ svg/graphics/SVGPaintServerRadialGradient.h \
+ svg/graphics/SVGPaintServerSolid.h \
+ svg/graphics/SVGResourceClipper.h \
+ svg/graphics/SVGResourceFilter.h \
+ svg/graphics/SVGResource.h \
+ svg/graphics/SVGResourceMarker.h \
+ svg/graphics/SVGResourceMasker.h \
+ svg/SVGAElement.h \
+ svg/SVGAltGlyphElement.h \
+ svg/SVGAngle.h \
+ svg/SVGAnimateColorElement.h \
+ svg/SVGAnimatedPathData.h \
+ svg/SVGAnimatedPoints.h \
+ svg/SVGAnimateElement.h \
+ svg/SVGAnimateMotionElement.h \
+ svg/SVGAnimateTransformElement.h \
+ svg/SVGAnimationElement.h \
+ svg/SVGCircleElement.h \
+ svg/SVGClipPathElement.h \
+ svg/SVGColor.h \
+ svg/SVGComponentTransferFunctionElement.h \
+ svg/SVGCursorElement.h \
+ svg/SVGDefinitionSrcElement.h \
+ svg/SVGDefsElement.h \
+ svg/SVGDescElement.h \
+ svg/SVGDocumentExtensions.h \
+ svg/SVGDocument.h \
+ svg/SVGElement.h \
+ svg/SVGElementInstance.h \
+ svg/SVGElementInstanceList.h \
+ svg/SVGEllipseElement.h \
+ svg/SVGExternalResourcesRequired.h \
+ svg/SVGFEBlendElement.h \
+ svg/SVGFEColorMatrixElement.h \
+ svg/SVGFEComponentTransferElement.h \
+ svg/SVGFECompositeElement.h \
+ svg/SVGFEDiffuseLightingElement.h \
+ svg/SVGFEDisplacementMapElement.h \
+ svg/SVGFEDistantLightElement.h \
+ svg/SVGFEFloodElement.h \
+ svg/SVGFEFuncAElement.h \
+ svg/SVGFEFuncBElement.h \
+ svg/SVGFEFuncGElement.h \
+ svg/SVGFEFuncRElement.h \
+ svg/SVGFEGaussianBlurElement.h \
+ svg/SVGFEImageElement.h \
+ svg/SVGFELightElement.h \
+ svg/SVGFEMergeElement.h \
+ svg/SVGFEMergeNodeElement.h \
+ svg/SVGFEOffsetElement.h \
+ svg/SVGFEPointLightElement.h \
+ svg/SVGFESpecularLightingElement.h \
+ svg/SVGFESpotLightElement.h \
+ svg/SVGFETileElement.h \
+ svg/SVGFETurbulenceElement.h \
+ svg/SVGFilterElement.h \
+ svg/SVGFilterPrimitiveStandardAttributes.h \
+ svg/SVGFitToViewBox.h \
+ svg/SVGFontData.h \
+ svg/SVGFontElement.h \
+ svg/SVGFontFaceElement.h \
+ svg/SVGFontFaceFormatElement.h \
+ svg/SVGFontFaceNameElement.h \
+ svg/SVGFontFaceSrcElement.h \
+ svg/SVGFontFaceUriElement.h \
+ svg/SVGForeignObjectElement.h \
+ svg/SVGGElement.h \
+ svg/SVGGlyphElement.h \
+ svg/SVGGradientElement.h \
+ svg/SVGHKernElement.h \
+ svg/SVGImageElement.h \
+ svg/SVGImageLoader.h \
+ svg/SVGLangSpace.h \
+ svg/SVGLength.h \
+ svg/SVGLengthList.h \
+ svg/SVGLinearGradientElement.h \
+ svg/SVGLineElement.h \
+ svg/SVGLocatable.h \
+ svg/SVGMarkerElement.h \
+ svg/SVGMaskElement.h \
+ svg/SVGMetadataElement.h \
+ svg/SVGMissingGlyphElement.h \
+ svg/SVGMPathElement.h \
+ svg/SVGNumberList.h \
+ svg/SVGPaint.h \
+ svg/SVGParserUtilities.h \
+ svg/SVGPathElement.h \
+ svg/SVGPathSegArc.h \
+ svg/SVGPathSegClosePath.h \
+ svg/SVGPathSegCurvetoCubic.h \
+ svg/SVGPathSegCurvetoCubicSmooth.h \
+ svg/SVGPathSegCurvetoQuadratic.h \
+ svg/SVGPathSegCurvetoQuadraticSmooth.h \
+ svg/SVGPathSegLineto.h \
+ svg/SVGPathSegLinetoHorizontal.h \
+ svg/SVGPathSegLinetoVertical.h \
+ svg/SVGPathSegList.h \
+ svg/SVGPathSegMoveto.h \
+ svg/SVGPatternElement.h \
+ svg/SVGPointList.h \
+ svg/SVGPolyElement.h \
+ svg/SVGPolygonElement.h \
+ svg/SVGPolylineElement.h \
+ svg/SVGPreserveAspectRatio.h \
+ svg/SVGRadialGradientElement.h \
+ svg/SVGRectElement.h \
+ svg/SVGScriptElement.h \
+ svg/SVGSetElement.h \
+ svg/SVGStopElement.h \
+ svg/SVGStringList.h \
+ svg/SVGStylable.h \
+ svg/SVGStyledElement.h \
+ svg/SVGStyledLocatableElement.h \
+ svg/SVGStyledTransformableElement.h \
+ svg/SVGStyleElement.h \
+ svg/SVGSVGElement.h \
+ svg/SVGSwitchElement.h \
+ svg/SVGSymbolElement.h \
+ svg/SVGTests.h \
+ svg/SVGTextContentElement.h \
+ svg/SVGTextElement.h \
+ svg/SVGTextPathElement.h \
+ svg/SVGTextPositioningElement.h \
+ svg/SVGTitleElement.h \
+ svg/SVGTransformable.h \
+ svg/SVGTransformDistance.h \
+ svg/SVGTransform.h \
+ svg/SVGTransformList.h \
+ svg/SVGTRefElement.h \
+ svg/SVGTSpanElement.h \
+ svg/SVGURIReference.h \
+ svg/SVGUseElement.h \
+ svg/SVGViewElement.h \
+ svg/SVGViewSpec.h \
+ svg/SVGZoomAndPan.h \
+ svg/SVGZoomEvent.h \
+ wml/WMLAccessElement.h \
+ wml/WMLAElement.h \
+ wml/WMLAnchorElement.h \
+ wml/WMLBRElement.h \
+ wml/WMLCardElement.h \
+ wml/WMLDocument.h \
+ wml/WMLDoElement.h \
+ wml/WMLElement.h \
+ wml/WMLErrorHandling.h \
+ wml/WMLEventHandlingElement.h \
+ wml/WMLFieldSetElement.h \
+ wml/WMLFormControlElement.h \
+ wml/WMLGoElement.h \
+ wml/WMLImageElement.h \
+ wml/WMLImageLoader.h \
+ wml/WMLInputElement.h \
+ wml/WMLInsertedLegendElement.h \
+ wml/WMLIntrinsicEvent.h \
+ wml/WMLIntrinsicEventHandler.h \
+ wml/WMLMetaElement.h \
+ wml/WMLNoopElement.h \
+ wml/WMLOnEventElement.h \
+ wml/WMLOptGroupElement.h \
+ wml/WMLOptionElement.h \
+ wml/WMLPageState.h \
+ wml/WMLPElement.h \
+ wml/WMLPostfieldElement.h \
+ wml/WMLPrevElement.h \
+ wml/WMLRefreshElement.h \
+ wml/WMLSelectElement.h \
+ wml/WMLSetvarElement.h \
+ wml/WMLTableElement.h \
+ wml/WMLTaskElement.h \
+ wml/WMLTemplateElement.h \
+ wml/WMLTimerElement.h \
+ wml/WMLVariables.h \
+ workers/AbstractWorker.h \
+ workers/SharedWorker.h \
+ workers/WorkerContext.h \
+ workers/Worker.h \
+ workers/WorkerLocation.h \
+ workers/WorkerMessagingProxy.h \
+ workers/WorkerRunLoop.h \
+ workers/WorkerScriptLoader.h \
+ workers/WorkerThread.h \
+ xml/DOMParser.h \
+ xml/NativeXPathNSResolver.h \
+ xml/XMLHttpRequest.h \
+ xml/XMLHttpRequestUpload.h \
+ xml/XMLSerializer.h \
+ xml/XPathEvaluator.h \
+ xml/XPathExpression.h \
+ xml/XPathExpressionNode.h \
+ xml/XPathFunctions.h \
+ xml/XPathNamespace.h \
+ xml/XPathNodeSet.h \
+ xml/XPathNSResolver.h \
+ xml/XPathParser.h \
+ xml/XPathPath.h \
+ xml/XPathPredicate.h \
+ xml/XPathResult.h \
+ xml/XPathStep.h \
+ xml/XPathUtil.h \
+ xml/XPathValue.h \
+ xml/XPathVariableReference.h \
+ xml/XSLImportRule.h \
+ xml/XSLStyleSheet.h \
+ xml/XSLTExtensions.h \
+ xml/XSLTProcessor.h \
+ xml/XSLTUnicodeSort.h \
$$PWD/../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h \
- $$PWD/platform/network/qt/QNetworkReplyHandler.h \
- $$PWD/rendering/style/CursorData.h \
- $$PWD/rendering/style/CursorList.h \
- $$PWD/rendering/style/StyleInheritedData.h \
- $$PWD/rendering/style/StyleRareInheritedData.h \
- $$PWD/rendering/style/StyleRareNonInheritedData.h \
- $$PWD/rendering/style/StyleReflection.h
-
SOURCES += \
accessibility/qt/AccessibilityObjectQt.cpp \
@@ -1309,25 +2248,28 @@ contains(DEFINES, ENABLE_DASHBOARD_SUPPORT=0) {
DASHBOARDSUPPORTCSSPROPERTIES -= $$PWD/css/DashboardSupportCSSPropertyNames.in
}
+contains(DEFINES, ENABLE_DATAGRID=1) {
+ FEATURE_DEFINES_JAVASCRIPT += ENABLE_DATAGRID=1
+}
+
contains(DEFINES, ENABLE_SQLITE=1) {
- # somewhat copied from src/plugins/sqldrivers/sqlite/sqlite.pro
- CONFIG(QTDIR_build):system-sqlite {
- LIBS *= $$QT_LFLAGS_SQLITE
- QMAKE_CXXFLAGS *= $$QT_CFLAGS_SQLITE
- } else {
- exists( $${SQLITE3SRCDIR}/sqlite3.c ) {
- # we have source - use it
- CONFIG(release, debug|release):DEFINES *= NDEBUG
- DEFINES += SQLITE_CORE SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_COMPLETE
- contains(DEFINES, ENABLE_SINGLE_THREADED=1) {
- DEFINES+=SQLITE_THREADSAFE=0
- }
+ !system-sqlite:exists( $${SQLITE3SRCDIR}/sqlite3.c ) {
+ # Build sqlite3 into WebCore from source
+ # somewhat copied from $$QT_SOURCE_TREE/src/plugins/sqldrivers/sqlite/sqlite.pro
INCLUDEPATH += $${SQLITE3SRCDIR}
SOURCES += $${SQLITE3SRCDIR}/sqlite3.c
+ DEFINES += SQLITE_CORE SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_COMPLETE
+ CONFIG(release, debug|release): DEFINES *= NDEBUG
+ contains(DEFINES, ENABLE_SINGLE_THREADED=1): DEFINES += SQLITE_THREADSAFE=0
+ } else {
+ # Use sqlite3 from the underlying OS
+ CONFIG(QTDIR_build) {
+ QMAKE_CXXFLAGS *= $$QT_CFLAGS_SQLITE
+ LIBS *= $$QT_LFLAGS_SQLITE
} else {
- # fall back to platform library
- INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/sqlite/
- LIBS += -lsqlite3
+ INCLUDEPATH += $${SQLITE3SRCDIR}
+ symbian: LIBS += -lsqlite3.lib
+ else: LIBS += -lsqlite3
}
}
@@ -1377,13 +2319,25 @@ contains(DEFINES, ENABLE_DOM_STORAGE=1) {
FEATURE_DEFINES_JAVASCRIPT += ENABLE_DOM_STORAGE=1
HEADERS += \
+ storage/ChangeVersionWrapper.h \
+ storage/DatabaseAuthorizer.h \
+ storage/Database.h \
+ storage/DatabaseTask.h \
+ storage/DatabaseThread.h \
+ storage/DatabaseTracker.h \
storage/LocalStorageTask.h \
storage/LocalStorageThread.h \
- storage/Storage.h \
+ storage/OriginQuotaManager.h \
+ storage/OriginUsageRecord.h \
+ storage/SQLResultSet.h \
+ storage/SQLResultSetRowList.h \
+ storage/SQLStatement.h \
+ storage/SQLTransaction.h \
storage/StorageArea.h \
storage/StorageAreaImpl.h \
storage/StorageAreaSync.h \
storage/StorageEvent.h \
+ storage/Storage.h \
storage/StorageMap.h \
storage/StorageNamespace.h \
storage/StorageNamespaceImpl.h \
@@ -1423,11 +2377,15 @@ contains(DEFINES, ENABLE_WORKERS=1) {
IDL_BINDINGS += \
page/WorkerNavigator.idl \
+ workers/AbstractWorker.idl \
+ workers/DedicatedWorkerContext.idl \
workers/Worker.idl \
workers/WorkerContext.idl \
workers/WorkerLocation.idl
SOURCES += \
+ bindings/js/JSAbstractWorkerCustom.cpp \
+ bindings/js/JSDedicatedWorkerContextCustom.cpp \
bindings/js/JSWorkerConstructor.cpp \
bindings/js/JSWorkerContextBase.cpp \
bindings/js/JSWorkerContextCustom.cpp \
@@ -1435,6 +2393,8 @@ contains(DEFINES, ENABLE_WORKERS=1) {
bindings/js/WorkerScriptController.cpp \
loader/WorkerThreadableLoader.cpp \
page/WorkerNavigator.cpp \
+ workers/AbstractWorker.cpp \
+ workers/DedicatedWorkerContext.cpp \
workers/Worker.cpp \
workers/WorkerContext.cpp \
workers/WorkerLocation.cpp \
@@ -1448,14 +2408,11 @@ contains(DEFINES, SHARED_WORKERS=1) {
FEATURE_DEFINES_JAVASCRIPT += ENABLE_SHARED_WORKERS=1
IDL_BINDINGS += \
- workers/AbstractWorker.idl \
workers/SharedWorker.idl
SOURCES += \
- bindings/js/JSAbstractWorkerCustom.cpp \
bindings/js/JSSharedWorkerConstructor.cpp \
bindings/js/JSSharedWorkerCustom.cpp \
- workers/AbstractWorker.cpp \
workers/SharedWorker.cpp
}
@@ -2020,6 +2977,7 @@ contains(DEFINES, ENABLE_SVG=1) {
cssprops.input = WALDOCSSPROPS
cssprops.commands = perl -ne \"print lc\" ${QMAKE_FILE_NAME} $$DASHBOARDSUPPORTCSSPROPERTIES $$SVGCSSPROPERTIES > $${GENERATED_SOURCES_DIR}$${QMAKE_DIR_SEP}${QMAKE_FILE_BASE}.in && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makeprop.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.gperf
cssprops.CONFIG = target_predeps no_link
+ cssprops.variable_out =
cssprops.depend = ${QMAKE_FILE_NAME} DASHBOARDSUPPORTCSSPROPERTIES SVGCSSPROPERTIES
addExtraCompilerWithHeader(cssprops)
@@ -2028,6 +2986,7 @@ contains(DEFINES, ENABLE_SVG=1) {
cssvalues.input = WALDOCSSVALUES
cssvalues.commands = perl -ne \"print lc\" ${QMAKE_FILE_NAME} $$SVGCSSVALUES > $${GENERATED_SOURCES_DIR}$${QMAKE_DIR_SEP}${QMAKE_FILE_BASE}.in && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makevalues.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.gperf
cssvalues.CONFIG = target_predeps no_link
+ cssvalues.variable_out =
cssvalues.depend = ${QMAKE_FILE_NAME} SVGCSSVALUES
addExtraCompilerWithHeader(cssvalues)
} else {
@@ -2036,6 +2995,7 @@ contains(DEFINES, ENABLE_SVG=1) {
cssprops.input = WALDOCSSPROPS
cssprops.commands = perl -ne \"print lc\" ${QMAKE_FILE_NAME} $$DASHBOARDSUPPORTCSSPROPERTIES > $${GENERATED_SOURCES_DIR}$${QMAKE_DIR_SEP}${QMAKE_FILE_BASE}.in && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makeprop.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.gperf
cssprops.CONFIG = target_predeps no_link
+ cssprops.variable_out =
cssprops.depend = ${QMAKE_FILE_NAME} DASHBOARDSUPPORTCSSPROPERTIES
addExtraCompilerWithHeader(cssprops)
@@ -2044,6 +3004,7 @@ contains(DEFINES, ENABLE_SVG=1) {
cssvalues.input = WALDOCSSVALUES
cssvalues.commands = perl -ne \"print lc\" ${QMAKE_FILE_NAME} > $${GENERATED_SOURCES_DIR}$${QMAKE_DIR_SEP}${QMAKE_FILE_BASE}.in && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makevalues.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.gperf
cssvalues.CONFIG = target_predeps no_link
+ cssvalues.variable_out =
cssvalues.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
addExtraCompiler(cssvalues)
}
@@ -2100,6 +3061,7 @@ tokenizer.commands = flex -t < ${QMAKE_FILE_NAME} | perl $$PWD/css/maketokenizer
tokenizer.dependency_type = TYPE_C
tokenizer.input = TOKENIZER
tokenizer.CONFIG += target_predeps no_link
+tokenizer.variable_out =
addExtraCompiler(tokenizer)
# GENERATOR 4: CSS grammar
@@ -2154,6 +3116,7 @@ entities.commands = gperf -a -L ANSI-C -C -G -c -o -t --key-positions="*" -N fin
entities.input = ENTITIES_GPERF
entities.dependency_type = TYPE_C
entities.CONFIG = target_predeps no_link
+entities.variable_out =
entities.clean = ${QMAKE_FILE_OUT}
addExtraCompiler(entities)
@@ -2163,6 +3126,7 @@ doctypestrings.input = DOCTYPESTRINGS
doctypestrings.commands = perl -e \"print \'$${LITERAL_HASH}include <string.h>\';\" > ${QMAKE_FILE_OUT} && echo // bogus >> ${QMAKE_FILE_OUT} && gperf -CEot -L ANSI-C --key-positions="*" -N findDoctypeEntry -F ,PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards < ${QMAKE_FILE_NAME} >> ${QMAKE_FILE_OUT}
doctypestrings.dependency_type = TYPE_C
doctypestrings.CONFIG += target_predeps no_link
+doctypestrings.variable_out =
doctypestrings.clean = ${QMAKE_FILE_OUT}
addExtraCompiler(doctypestrings)
@@ -2171,6 +3135,7 @@ colordata.output = $${GENERATED_SOURCES_DIR}$${QMAKE_DIR_SEP}ColorData.c
colordata.commands = perl -e \"print \'$${LITERAL_HASH}include <string.h>\';\" > ${QMAKE_FILE_OUT} && echo // bogus >> ${QMAKE_FILE_OUT} && gperf -CDEot -L ANSI-C --key-positions="*" -N findColor -D -s 2 < ${QMAKE_FILE_NAME} >> ${QMAKE_FILE_OUT}
colordata.input = COLORDAT_GPERF
colordata.CONFIG = target_predeps no_link
+colordata.variable_out =
addExtraCompiler(colordata)
# GENERATOR 9: