Changeset 71230 in webkit


Ignore:
Timestamp:
Nov 3, 2010 4:33:10 AM (13 years ago)
Author:
Nikolas Zimmermann
Message:

2010-11-03 Nikolas Zimmermann <nzimmermann@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.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r71229 r71230  
     12010-11-03  Nikolas Zimmermann  <nzimmermann@rim.com>
     2
     3        Not reviewed.
     4
     5        Convert SVGAnimatedString/SVGStringList to the new SVG*PropertyTearOff concept
     6        https://bugs.webkit.org/show_bug.cgi?id=48898
     7
     8        Next attempt to fix the Chromium/V8 builds - a class forward in the headers was still missing.
     9
     10        * bindings/scripts/CodeGeneratorV8.pm: Add SVGStringListPropertyTearOff in the V8SVGStringList header.
     11
    1122010-11-03  Nikolas Zimmermann  <nzimmermann@rim.com>
    213
  • trunk/WebCore/bindings/scripts/CodeGeneratorV8.pm

    r71229 r71230  
    276276    push(@headerContent, "\ntemplate<typename PODType> class V8SVGPODTypeWrapper;\n") if $podType;
    277277    push(@headerContent, "\ntemplate<typename PropertyType> class SVGPropertyTearOff;\n") if $svgPropertyType;
    278     push(@headerContent, "\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n") if $svgListPropertyType;
     278    if ($svgListPropertyType eq "SVGStringList") {
     279        push(@headerContent, "\nclass SVGStringListPropertyTearOff;\n");
     280    } else {
     281        push(@headerContent, "\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n");
     282    }
    279283    push(@headerContent, "\nclass $className {\n");
    280284
Note: See TracChangeset for help on using the changeset viewer.