Title: [200365] trunk/Source/WebCore
Revision
200365
Author
[email protected]
Date
2016-05-03 01:50:59 -0700 (Tue, 03 May 2016)

Log Message

Unreviewed. Fix GObject DOM bindings API break after r200316.

webkit_dom_tree_walker_set_current_node no longer raises exceptions after r200316, so mark it accordingly.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (200364 => 200365)


--- trunk/Source/WebCore/ChangeLog	2016-05-03 08:18:13 UTC (rev 200364)
+++ trunk/Source/WebCore/ChangeLog	2016-05-03 08:50:59 UTC (rev 200365)
@@ -1,5 +1,14 @@
 2016-05-03  Carlos Garcia Campos  <[email protected]>
 
+        Unreviewed. Fix GObject DOM bindings API break after r200316.
+
+        webkit_dom_tree_walker_set_current_node no longer raises exceptions after r200316, so mark it accordingly.
+
+        * bindings/scripts/CodeGeneratorGObject.pm:
+        (FunctionUsedToRaiseException):
+
+2016-05-03  Carlos Garcia Campos  <[email protected]>
+
         [OpenType] OpenTypeVerticalData object should not be created if the font is not OpenType
         https://bugs.webkit.org/show_bug.cgi?id=157172
 

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm (200364 => 200365)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2016-05-03 08:18:13 UTC (rev 200364)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm	2016-05-03 08:50:59 UTC (rev 200365)
@@ -1044,7 +1044,8 @@
         || $functionName eq "webkit_dom_range_get_collapsed"
         || $functionName eq "webkit_dom_range_get_end_offset"
         || $functionName eq "webkit_dom_range_get_start_offset"
-        || $functionName eq "webkit_dom_range_to_string";
+        || $functionName eq "webkit_dom_range_to_string"
+        || $functionName eq "webkit_dom_tree_walker_set_current_node";
 }
 
 sub FunctionUsedToNotRaiseException {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to