[Webkit-unassigned] [Bug 151992] [UNIX] Add support for windowless NPAPI plugins with no UI in non X11 platforms

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 2 23:36:53 PST 2016


https://bugs.webkit.org/show_bug.cgi?id=151992

--- Comment #12 from Carlos Garcia Campos <cgarcia at igalia.com> ---
(In reply to comment #10)
> Comment on attachment 270480 [details]
> Updated patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=270480&action=review
> 
> While I’m not a platform expert I think I can review.

Thanks!

> > Source/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:534
> > +            const auto& display = WebCore::PlatformDisplay::sharedDisplay();
> 
> I don’t think the const here is needed or helpful.

Ok, removed.

> > Source/WebKit2/WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:537
> > +            *reinterpret_cast<Display**>(value) = downcast<PlatformDisplayX11>(display).native();
> 
> Strange that the WebCore prefix is not needed here but is needed on the line
> above.

It's not needed, there's a using namespace in this file.

> > Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePlugin.h:56
> >  class NetscapePluginStream;
> > -    
> > +#if PLUGIN_ARCHITECTURE(X11)
> > +class NetscapePluginUnix;
> > +#endif
> >  class NetscapePlugin : public Plugin {
> 
> Please don’t delete the blank line here that separates the forward
> declarations from the class definition. Not clear that we need to put #if
> around a forward declaration. If we do, then please put it in a separate
> paragraph with spaces above and below the #if/#endif

I don't think we need ifdefs.

> > Source/WebKit2/WebProcess/Plugins/Netscape/unix/NetscapePluginUnix.h:31
> > +#include <WebCore/GraphicsContext.h>
> 
> I think we could use forward declarations for GraphicsContext and IntRect in
> this file rather than including the header, which is typically better.

Ok.

> > Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.h:31
> > +#if PLUGIN_ARCHITECTURE(X11)
> > +#include "NetscapePluginUnix.h"
> 
> We normally put a blank line here between the #if and the #include.

Ok.

> > Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.h:38
> > +class NetscapePluginX11 final: public NetscapePluginUnix {
> 
> We normally put a space after final before ":".

OK.

> > Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.h:46
> > +private:
> 
> We normally put a blank line here before private.

Ok.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160203/3db0473c/attachment.html>


More information about the webkit-unassigned mailing list