Title: [170351] trunk/Source/WebCore
Revision
170351
Author
[email protected]
Date
2014-06-24 00:14:43 -0700 (Tue, 24 Jun 2014)

Log Message

Unreviewed. Fix GTK+ build after r170309.

Skip functions returning arrays in GObject DOM bindings.

* bindings/scripts/CodeGeneratorGObject.pm:
(SkipFunction):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (170350 => 170351)


--- trunk/Source/WebCore/ChangeLog	2014-06-24 06:55:21 UTC (rev 170350)
+++ trunk/Source/WebCore/ChangeLog	2014-06-24 07:14:43 UTC (rev 170351)
@@ -1,3 +1,12 @@
+2014-06-24  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix GTK+ build after r170309.
+
+        Skip functions returning arrays in GObject DOM bindings.
+
+        * bindings/scripts/CodeGeneratorGObject.pm:
+        (SkipFunction):
+
 2014-06-23  Ryuan Choi  <[email protected]>
 
         [EFL] Replace RefPtr<Evas_Object> with UniquePtrEfl

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm (170350 => 170351)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2014-06-24 06:55:21 UTC (rev 170350)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2014-06-24 07:14:43 UTC (rev 170351)
@@ -305,6 +305,10 @@
         return 1;
     }
 
+    if ($codeGenerator->IsTypedArrayType($function->signature->type) || $codeGenerator->GetArrayType($function->signature->type)) {
+        return 1;
+    }
+
     if ($function->signature->name eq "set" and $parentNode->extendedAttributes->{"TypedArray"}) {
         return 1;
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to