RESOLVED FIXED 141409
a few more WEBCORE_EXPORT macros
https://bugs.webkit.org/show_bug.cgi?id=141409
Summary a few more WEBCORE_EXPORT macros
Alex Christensen
Reported 2015-02-09 15:42:17 PST
WEBCORE_EXPORT macros need updating to reflect the changes of the last 5 months.
Attachments
Patch (40.79 KB, patch)
2015-02-09 15:46 PST, Alex Christensen
no flags
Patch (53.49 KB, patch)
2015-02-09 16:35 PST, Alex Christensen
no flags
Alex Christensen
Comment 1 2015-02-09 15:46:22 PST
Tim Horton
Comment 2 2015-02-09 15:51:07 PST
Comment on attachment 246300 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=246300&action=review > Source/WebCore/bindings/js/JSDOMGlobalObject.h:71 > - static WEBKIT_EXPORTDATA const JSC::ClassInfo s_info; > + WEBCORE_EXPORT static const JSC::ClassInfo s_info; Are these changes right? > Source/WebCore/bindings/objc/DOMInternal.h:53 > +WEBCORE_EXPORT @interface DOMNodeFilter : DOMObject <DOMNodeFilter> ‽ ‽ how > Source/WebCore/page/DatabaseProvider.h:36 > +class WEBCORE_EXPORT DatabaseProvider : public RefCounted<DatabaseProvider> { What does it mean to export a class? Also, is this the right placement for this?
Alex Christensen
Comment 3 2015-02-09 16:01:38 PST
(In reply to comment #2) > Comment on attachment 246300 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=246300&action=review > > > Source/WebCore/bindings/js/JSDOMGlobalObject.h:71 > > - static WEBKIT_EXPORTDATA const JSC::ClassInfo s_info; > > + WEBCORE_EXPORT static const JSC::ClassInfo s_info; > > Are these changes right? Yes. When I make the switch, I'm going to get rid of WEBKIT_EXPORTDATA in favor of WEBCORE_EXPORT, which does the same thing. > > > Source/WebCore/bindings/objc/DOMInternal.h:53 > > +WEBCORE_EXPORT @interface DOMNodeFilter : DOMObject <DOMNodeFilter> > > ‽ ‽ how I'm not sure, but this fixes linker errors of missing symbols like _OBJC_CLASS_$_DOMNodeFilter and _OBJC_METACLASS_$_DOMNodeFilter. > > > Source/WebCore/page/DatabaseProvider.h:36 > > +class WEBCORE_EXPORT DatabaseProvider : public RefCounted<DatabaseProvider> { > > What does it mean to export a class? Also, is this the right placement for > this? This is the right placement. It exports the vtable.
Alex Christensen
Comment 4 2015-02-09 16:35:54 PST
Alex Christensen
Comment 5 2015-02-09 16:36:23 PST
I added changes to the bindings tests.
WebKit Commit Bot
Comment 6 2015-02-09 17:21:43 PST
Comment on attachment 246303 [details] Patch Clearing flags on attachment: 246303 Committed r179861: <http://trac.webkit.org/changeset/179861>
WebKit Commit Bot
Comment 7 2015-02-09 17:21:46 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.