[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:09 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 20fe2bb8810d6b808d7cac3a0e6b502c041ac134
Author: zimmermann at webkit.org <zimmermann at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 3 11:23: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
    
            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...)
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71229 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d26423a..ae9a939 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,16 @@
 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...)
+
+2010-11-03  Nikolas Zimmermann  <nzimmermann at rim.com>
+
         Reviewed by Dirk Schulze.
 
         Convert SVGAnimatedString/SVGStringList to the new SVG*PropertyTearOff concept
diff --git a/WebCore/bindings/scripts/CodeGeneratorV8.pm b/WebCore/bindings/scripts/CodeGeneratorV8.pm
index ecfd8ae..ab35096 100644
--- a/WebCore/bindings/scripts/CodeGeneratorV8.pm
+++ b/WebCore/bindings/scripts/CodeGeneratorV8.pm
@@ -222,12 +222,13 @@ sub GetSVGPropertyTypes
     my $svgWrappedNativeType = $codeGenerator->GetSVGWrappedTypeNeedingTearOff($implType);
     if ($svgNativeType =~ /SVGPropertyTearOff/) {
         $svgPropertyType = $svgWrappedNativeType;
-        $implIncludes{"SVGAnimatedPropertyTearOff.h"} = 1,
+        $implIncludes{"SVGAnimatedPropertyTearOff.h"} = 1;
     } elsif ($svgNativeType =~ /SVGListPropertyTearOff/) {
         $svgListPropertyType = $svgWrappedNativeType;
-        $implIncludes{"SVGAnimatedListPropertyTearOff.h"} = 1,
+        $implIncludes{"SVGAnimatedListPropertyTearOff.h"} = 1;
     } elsif ($svgNativeType =~ /SVGStringListPropertyTearOff/) {
         $svgListPropertyType = "SVGStringList";
+        $implIncludes{"SVGStringListPropertyTearOff.h"} = 1;
         $implIncludes{"$svgWrappedNativeType.h"} = 1;
     }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list