Title: [89261] trunk/Source/WebCore
Revision
89261
Author
[email protected]
Date
2011-06-20 10:55:24 -0700 (Mon, 20 Jun 2011)

Log Message

2011-06-20  Anders Carlsson  <[email protected]>

        Reviewed by Adam Barth.

        Don't use PassRefPtr variables in the V8 bindings generator
        https://bugs.webkit.org/show_bug.cgi?id=62947

        * bindings/scripts/CodeGeneratorV8.pm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (89260 => 89261)


--- trunk/Source/WebCore/ChangeLog	2011-06-20 17:54:45 UTC (rev 89260)
+++ trunk/Source/WebCore/ChangeLog	2011-06-20 17:55:24 UTC (rev 89261)
@@ -1,3 +1,12 @@
+2011-06-20  Anders Carlsson  <[email protected]>
+
+        Reviewed by Adam Barth.
+
+        Don't use PassRefPtr variables in the V8 bindings generator
+        https://bugs.webkit.org/show_bug.cgi?id=62947
+
+        * bindings/scripts/CodeGeneratorV8.pm:
+
 2011-06-20  Adam Barth  <[email protected]>
 
         Reviewed by Alexey Proskuryakov.

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (89260 => 89261)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-06-20 17:54:45 UTC (rev 89260)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-06-20 17:55:24 UTC (rev 89261)
@@ -2921,7 +2921,6 @@
 
     return "RefPtr<MediaQueryListListener>" if $type eq "MediaQueryListListener";
 
-    return "PassRefPtr<DOMStringList>" if $type eq "DOMStringList" and $isParameter;
     return "RefPtr<DOMStringList>" if $type eq "DOMStringList";
 
     # Default, assume native type is a pointer with same type name as idl type
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to