RESOLVED FIXED 123899
[GTK] Use deprecation guards around deprecated API in GObject DOM bindings
https://bugs.webkit.org/show_bug.cgi?id=123899
Summary [GTK] Use deprecation guards around deprecated API in GObject DOM bindings
Carlos Garcia Campos
Reported 2013-11-06 09:38:29 PST
Do not include deprecated API when compiling with WEBKIT_DISABLE_DEPRECATED option.
Attachments
Patch (4.21 KB, patch)
2013-11-06 09:40 PST, Carlos Garcia Campos
mrobinson: review+
Carlos Garcia Campos
Comment 1 2013-11-06 09:40:08 PST
Martin Robinson
Comment 2 2013-11-06 09:48:55 PST
Comment on attachment 216185 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=216185&action=review Looking good, with one small nit about the comment style. > Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm:1009 > + push(@hBody, "#endif /* WEBKIT_DISABLE_DEPRECATED */\n"); See below. > Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm:1234 > + push(@cBody, "#endif /* WEBKIT_DISABLE_DEPRECATED */\n"); See below. > Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestEventTarget.cpp:167 > +#endif /* WEBKIT_DISABLE_DEPRECATED */ I think we typically use C++ style comments for this sort of thing.
Carlos Garcia Campos
Comment 3 2013-11-06 09:58:04 PST
(In reply to comment #2) > (From update of attachment 216185 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=216185&action=review > > Looking good, with one small nit about the comment style. > > > Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm:1009 > > + push(@hBody, "#endif /* WEBKIT_DISABLE_DEPRECATED */\n"); > > See below. > > > Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm:1234 > > + push(@cBody, "#endif /* WEBKIT_DISABLE_DEPRECATED */\n"); > > See below. > > > Source/WebCore/bindings/scripts/test/GObject/WebKitDOMTestEventTarget.cpp:167 > > +#endif /* WEBKIT_DISABLE_DEPRECATED */ > > I think we typically use C++ style comments for this sort of thing. Yes, that's what I thought, but I checked the feature guards and they all use /* */.
Martin Robinson
Comment 4 2013-11-06 10:08:40 PST
(In reply to comment #3) > Yes, that's what I thought, but I checked the feature guards and they all use /* */. I think this is just an oversight. The bindings are trending toward following the style guidelines over time. :)
Carlos Garcia Campos
Comment 5 2013-11-06 10:12:51 PST
(In reply to comment #4) > (In reply to comment #3) > > > Yes, that's what I thought, but I checked the feature guards and they all use /* */. > > I think this is just an oversight. The bindings are trending toward following the style guidelines over time. :) Yes, I guess, I'll change it before landing then.
Martin Robinson
Comment 6 2013-11-06 10:14:41 PST
(In reply to comment #5) > Yes, I guess, I'll change it before landing then. Cool. Thanks for the patch!
Carlos Garcia Campos
Comment 7 2013-11-07 05:28:38 PST
(In reply to comment #6) > (In reply to comment #5) > > > Yes, I guess, I'll change it before landing then. > > Cool. Thanks for the patch! hmm, is it really ok to use // in public headers that can be included from C code? or do you want me to change only the comments in the cpp file?
Martin Robinson
Comment 8 2013-11-07 08:05:02 PST
Sorry. Only the CPP code.
Carlos Garcia Campos
Comment 9 2013-11-08 00:07:33 PST
Note You need to log in before you can comment on or make changes to this bug.