diff options
author | Ben Murdoch <benm@google.com> | 2009-08-13 16:08:11 +0100 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2009-08-13 16:08:11 +0100 |
commit | b5e614dc4ea95814db4102ea6acf78d1d36949d6 (patch) | |
tree | 4293e924883c66173f2ff2bb15a22da6daaae501 /WebCore/bindings | |
parent | 7bb28f8ec202edb789a7fa94ed0496b92d7ea491 (diff) | |
download | external_webkit-b5e614dc4ea95814db4102ea6acf78d1d36949d6.zip external_webkit-b5e614dc4ea95814db4102ea6acf78d1d36949d6.tar.gz external_webkit-b5e614dc4ea95814db4102ea6acf78d1d36949d6.tar.bz2 |
Fix some build errors.
Diffstat (limited to 'WebCore/bindings')
-rw-r--r-- | WebCore/bindings/v8/DOMObjectsInclude.h | 6 | ||||
-rw-r--r-- | WebCore/bindings/v8/V8Index.h | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/WebCore/bindings/v8/DOMObjectsInclude.h b/WebCore/bindings/v8/DOMObjectsInclude.h index 9d21885..6f36f3b 100644 --- a/WebCore/bindings/v8/DOMObjectsInclude.h +++ b/WebCore/bindings/v8/DOMObjectsInclude.h @@ -125,13 +125,10 @@ #include "SQLResultSetRowList.h" #include "StyleSheet.h" #include "StyleSheetList.h" -#include "SVGColor.h" -#include "SVGPaint.h" #include "TextEvent.h" #include "TextMetrics.h" #include "TimeRanges.h" #include "TreeWalker.h" -#include "XSLTProcessor.h" #include "V8AbstractEventListener.h" #include "V8CustomEventListener.h" #include "V8DOMWindow.h" @@ -158,6 +155,7 @@ #include "XPathExpression.h" #include "XPathNSResolver.h" #include "XPathResult.h" +#include "XSLTProcessor.h" #if ENABLE(OFFLINE_WEB_APPLICATIONS) #include "DOMApplicationCache.h" @@ -184,6 +182,7 @@ #if ENABLE(SVG) #include "SVGAngle.h" #include "SVGAnimatedPoints.h" +#include "SVGColor.h" #include "SVGElement.h" #include "SVGElementInstance.h" #include "SVGElementInstanceList.h" @@ -191,6 +190,7 @@ #include "SVGLength.h" #include "SVGLengthList.h" #include "SVGNumberList.h" +#include "SVGPaint.h" #include "SVGPathSeg.h" #include "SVGPathSegArc.h" #include "SVGPathSegClosePath.h" diff --git a/WebCore/bindings/v8/V8Index.h b/WebCore/bindings/v8/V8Index.h index e298125..1df015f 100644 --- a/WebCore/bindings/v8/V8Index.h +++ b/WebCore/bindings/v8/V8Index.h @@ -432,7 +432,7 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)(); V(COORDINATES, Coordinates) \ V(GEOLOCATION, Geolocation) \ V(GEOPOSITION, Geoposition) \ - V(POSITIONERROR, PositionError) \ + V(POSITIONERROR, PositionError) #else #define DOM_OBJECT_GEOLOCATION_TYPES(V) #endif @@ -441,9 +441,9 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)(); #define DOM_OBJECT_TOUCH_EVENT_TYPES(V) \ V(TOUCHLIST, TouchList) \ V(TOUCHEVENT, TouchEvent) \ - V(TOUCH, Touch) \ + V(TOUCH, Touch) #else -#define DOM_OBJECT_TOUCH_EVENT_TYPES(V) \ +#define DOM_OBJECT_TOUCH_EVENT_TYPES(V) #endif #if PLATFORM(CHROMIUM) @@ -453,7 +453,7 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)(); DOM_OBJECT_DATABASE_TYPES(V) \ DOM_OBJECT_STORAGE_TYPES(V) \ DOM_OBJECT_WORKERS_TYPES(V) -#elif PALTFORM(ANDROID) +#elif PLATFORM(ANDROID) #define DOM_OBJECT_TYPES(V) \ DOM_OBJECT_TYPES_1(V) \ DOM_OBJECT_TYPES_2(V) \ |