[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

zimmermann at webkit.org zimmermann at webkit.org
Wed Dec 22 15:26:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c1b386a64acf3dc40b4ea849cb045089bea989c6
Author: zimmermann at webkit.org <zimmermann at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 3 11:33:10 2010 +0000

    2010-11-03  Nikolas Zimmermann  <nzimmermann at rim.com>
    
            Not reviewed.
    
            Convert SVGAnimatedString/SVGStringList to the new SVG*PropertyTearOff concept
            https://bugs.webkit.org/show_bug.cgi?id=48898
    
            Next attempt to fix the Chromium/V8 builds - a class forward in the headers was still missing.
    
            * bindings/scripts/CodeGeneratorV8.pm: Add SVGStringListPropertyTearOff in the V8SVGStringList header.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71230 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index ae9a939..90e9085 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -5,6 +5,17 @@
         Convert SVGAnimatedString/SVGStringList to the new SVG*PropertyTearOff concept
         https://bugs.webkit.org/show_bug.cgi?id=48898
 
+        Next attempt to fix the Chromium/V8 builds - a class forward in the headers was still missing.
+
+        * bindings/scripts/CodeGeneratorV8.pm: Add SVGStringListPropertyTearOff in the V8SVGStringList header.
+
+2010-11-03  Nikolas Zimmermann  <nzimmermann at rim.com>
+
+        Not reviewed.
+
+        Convert SVGAnimatedString/SVGStringList to the new SVG*PropertyTearOff concept
+        https://bugs.webkit.org/show_bug.cgi?id=48898
+
         Attempt to fix the Chromium/V8 builds.
 
         * bindings/scripts/CodeGeneratorV8.pm: Add missing "SVGStringListPropertyTearOff.h" include, also replaces some commas by semicolons (no idea why it worked before, Perl is not strict...)
diff --git a/WebCore/bindings/scripts/CodeGeneratorV8.pm b/WebCore/bindings/scripts/CodeGeneratorV8.pm
index ab35096..9f88ace 100644
--- a/WebCore/bindings/scripts/CodeGeneratorV8.pm
+++ b/WebCore/bindings/scripts/CodeGeneratorV8.pm
@@ -275,7 +275,11 @@ sub GenerateHeader
     push(@headerContent, "\nnamespace WebCore {\n");
     push(@headerContent, "\ntemplate<typename PODType> class V8SVGPODTypeWrapper;\n") if $podType;
     push(@headerContent, "\ntemplate<typename PropertyType> class SVGPropertyTearOff;\n") if $svgPropertyType;
-    push(@headerContent, "\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n") if $svgListPropertyType;
+    if ($svgListPropertyType eq "SVGStringList") {
+        push(@headerContent, "\nclass SVGStringListPropertyTearOff;\n");
+    } else {
+        push(@headerContent, "\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n");
+    }
     push(@headerContent, "\nclass $className {\n");
 
     my $nativeType = GetNativeTypeForConversions($dataNode, $interfaceName);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list