Changeset 190039 in webkit


Ignore:
Timestamp:
Sep 20, 2015 8:33:05 PM (9 years ago)
Author:
Chris Dumez
Message:

Unreviewed, another GTK build fix after r190017.

  • bindings/scripts/CodeGeneratorGObject.pm:

(IsPropertyWriteable):

  • bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:

(webkit_dom_test_obj_class_init):
(webkit_dom_test_obj_set_property): Deleted.

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190038 r190039  
     12015-09-20  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed, another GTK build fix after r190017.
     4
     5        * bindings/scripts/CodeGeneratorGObject.pm:
     6        (IsPropertyWriteable):
     7        * bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:
     8        (webkit_dom_test_obj_class_init):
     9        (webkit_dom_test_obj_set_property): Deleted.
     10
    1112015-09-20  Chris Dumez  <cdumez@apple.com>
    212
  • trunk/Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm

    r190038 r190039  
    480480        return 0;
    481481    }
     482
     483    return 0 if $property->signature->extendedAttributes->{"CallWith"} || $property->signature->extendedAttributes->{"SetterCallWith"};
    482484
    483485    return 1;
  • trunk/Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestObj.cpp

    r190038 r190039  
    221221        webkit_dom_test_obj_set_string_attr_with_setter_exception(self, g_value_get_string(value), nullptr);
    222222        break;
    223     case PROP_WITH_SCRIPT_STATE_ATTRIBUTE:
    224         webkit_dom_test_obj_set_with_script_state_attribute(self, g_value_get_long(value));
    225         break;
    226     case PROP_WITH_CALL_WITH_AND_SETTER_CALL_WITH_ATTRIBUTE:
    227         webkit_dom_test_obj_set_with_call_with_and_setter_call_with_attribute(self, g_value_get_long(value));
    228         break;
    229223    case PROP_CONDITIONAL_ATTR1:
    230224        webkit_dom_test_obj_set_conditional_attr1(self, g_value_get_long(value));
     
    751745            "with-script-state-attribute",
    752746            "TestObj:with-script-state-attribute",
    753             "read-write glong TestObj:with-script-state-attribute",
     747            "read-only glong TestObj:with-script-state-attribute",
    754748            G_MINLONG, G_MAXLONG, 0,
    755             WEBKIT_PARAM_READWRITE));
     749            WEBKIT_PARAM_READABLE));
    756750
    757751    g_object_class_install_property(
     
    761755            "with-call-with-and-setter-call-with-attribute",
    762756            "TestObj:with-call-with-and-setter-call-with-attribute",
    763             "read-write glong TestObj:with-call-with-and-setter-call-with-attribute",
     757            "read-only glong TestObj:with-call-with-and-setter-call-with-attribute",
    764758            G_MINLONG, G_MAXLONG, 0,
    765             WEBKIT_PARAM_READWRITE));
     759            WEBKIT_PARAM_READABLE));
    766760
    767761    g_object_class_install_property(
Note: See TracChangeset for help on using the changeset viewer.