You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create a PPAPI plugin (dll, .so, etc) similar to the Flash Player
(but much simpler). I need this in order to work around the deprecation of
NPAPI :(
I don't want it to be inside NaCl. That's why I believe that the NaCl SDK is
useless for this? Reason being I need access to read/write to the file system.
I've checked out the code, but have pretty much no idea how to build it. All
guides out there seem to be talking about building NaCl rather than pure
pepper. I created a VS 2010 project and added the files, but it's giving me so
many errors.
"expecting an interface name or DispatchInterfaceName or CoclassName or
ModuleName or LibraryName or ContractName or a type specification near "label"
(ppb_audio_input_dev.idl)"
Is there a toolchain or guide for doing this?
Thanks!
Original issue reported on code.google.com by ash...@o-minds.com on 15 Dec 2014 at 4:40
The text was updated successfully, but these errors were encountered:
Dead end. Don't bother. All in all, pepper without nacl will be killed except
for a number of pre-select pepper plugins (e.g. Flash), and the only way to
install a pepper plugin without nacl is through command line arguments, and as
I was informed by some, Chrome may remove these command line arguments any
minute since they might decide they're a security risk.
Your best bet is the Chrome messaging API which allows your extension to
register a program and communicate with it. The program has access to
everything.
https://developer.chrome.com/extensions/nativeMessaging
For me, I've dropped support for the Chrome browser altogether.
Original comment by ash...@o-minds.com on 12 May 2015 at 8:37
Original issue reported on code.google.com by
ash...@o-minds.com
on 15 Dec 2014 at 4:40The text was updated successfully, but these errors were encountered: