gecko/dom/plugins
2009-11-20 13:48:42 -05:00
..
AStream.h Implement Plugin->Browser streams. In a very basic form the first plugin instantiation passes the new plugin stream tests, but subsequent instantiations don't: I think there's some shutdown/startup issue (the plugin is being unloaded, perhaps?) 2009-09-21 10:51:35 -04:00
BrowserStreamChild.cpp Add threadsafety assertions to plugin code 2009-10-08 12:11:13 -07:00
BrowserStreamChild.h More plugin crash fixes: failure from NPP_Write doesn't actually destroy the stream, it just tells the browser to destroy the stream. NPP_NewStream resulting from NPN_GetURLNotify didn't have the notifyData field set correctly. Other minor logging and cleanup. 2009-09-23 19:00:23 -04:00
BrowserStreamParent.cpp Remove stale TODO, this will be properly covered by parent-side error handling events. 2009-11-02 11:48:52 -05:00
BrowserStreamParent.h More plugin crash fixes: failure from NPP_Write doesn't actually destroy the stream, it just tells the browser to destroy the stream. NPP_NewStream resulting from NPN_GetURLNotify didn't have the notifyData field set correctly. Other minor logging and cleanup. 2009-09-23 19:00:23 -04:00
ipdl.mk Implement Plugin->Browser streams. In a very basic form the first plugin instantiation passes the new plugin stream tests, but subsequent instantiations don't: I think there's some shutdown/startup issue (the plugin is being unloaded, perhaps?) 2009-09-21 10:51:35 -04:00
Makefile.in Bug 525454 - Crash in mochitest-ipcplugins where NPP_Invoke returns the last reference to an object. Also fixes an operator-precedence error. 2009-10-30 17:02:47 -04:00
NPEventOSX.h mac builds and runs with --enable-ipc, but the subprocess nsAppShell dies for an apparently Cocoa-related reason. IPC is fine though 2009-11-10 20:25:10 -06:00
NPEventWindows.h Bug 522122. Electrolysis: Forawrd windows events to windowless plugins. r=cjones,karlt 2009-10-27 15:58:33 -04:00
NPEventX11.h Bug 522122. Electrolysis: Forawrd windows events to windowless plugins. r=cjones,karlt 2009-10-27 15:58:33 -04:00
PBrowserStream.ipdl no need to include in C++ protocol-common headers |include protocol|'d from IPDL. this is an accident of history 2009-11-12 16:20:20 -06:00
PluginInstanceChild.cpp Followup to bug 527876 2009-11-13 13:19:33 -08:00
PluginInstanceChild.h Followup to bug 527876 2009-11-13 13:19:33 -08:00
PluginInstanceParent.cpp Bug 525792 - 'Fix leaks running mochitests'. 2009-11-12 14:16:54 -08:00
PluginInstanceParent.h Allow multiple types of OOP plugins to load. b=516509 r=cjones 2009-10-27 15:51:12 -04:00
PluginLibrary.h Allow multiple types of OOP plugins to load. b=516509 r=cjones 2009-10-27 15:51:12 -04:00
PluginMessageUtils.cpp Bug 525454 - Crash in mochitest-ipcplugins where NPP_Invoke returns the last reference to an object. Also fixes an operator-precedence error. 2009-10-30 17:02:47 -04:00
PluginMessageUtils.h Bug 525454 - Crash in mochitest-ipcplugins where NPP_Invoke returns the last reference to an object. Also fixes an operator-precedence error. 2009-10-30 17:02:47 -04:00
PluginModuleChild.cpp Don't use a static nsCString (causing leaks in the plugin process). Also, use NS_LogInit/NS_LogTerm for the child process so that leaks are reported at the right time. 2009-11-19 17:57:56 -05:00
PluginModuleChild.h Don't use a static nsCString (causing leaks in the plugin process). Also, use NS_LogInit/NS_LogTerm for the child process so that leaks are reported at the right time. 2009-11-19 17:57:56 -05:00
PluginModuleParent.cpp Don't crash if NP_Initialize failed remotely: PluginLibrary::NP_Initialize returns an nsresult, not a NPError; nsNPAPIPlugin::CreatePlugin fails but still sets the outparam; nsPluginHost doesn't properly rv-check nsNPAPIPlugin::CreatePlugin, which causes us to think the bad plugin is actually good. I hate stupid failure chains! 2009-11-20 10:34:20 -05:00
PluginModuleParent.h bug 526626: band-aids for shutdown assertions 2009-11-09 16:56:55 -06:00
PluginPRLibrary.h Linux build bustage from previous commit, bug 525605. 2009-10-31 15:32:06 -04:00
PluginProcessParent.cpp Backed out changeset 97c456993dbd -- red herring, no need for this debugging spew. 2009-11-20 13:48:42 -05:00
PluginProcessParent.h bug 526626: band-aids for shutdown assertions 2009-11-09 16:56:55 -06:00
PluginScriptableObjectChild.cpp Bug 525792 - 'Fix leaks running mochitests'. 2009-11-12 14:16:54 -08:00
PluginScriptableObjectChild.h Add NPN_Evaluate and NPN_Push/PopPopupsEnabledState support 2009-10-13 10:54:41 -07:00
PluginScriptableObjectParent.cpp Bug 525792 - 'Fix leaks running mochitests'. 2009-11-12 14:16:54 -08:00
PluginScriptableObjectParent.h Add NPN_Evaluate and NPN_Push/PopPopupsEnabledState support 2009-10-13 10:54:41 -07:00
PluginStreamChild.cpp Add threadsafety assertions to plugin code 2009-10-08 12:11:13 -07:00
PluginStreamChild.h Implement Plugin->Browser streams. In a very basic form the first plugin instantiation passes the new plugin stream tests, but subsequent instantiations don't: I think there's some shutdown/startup issue (the plugin is being unloaded, perhaps?) 2009-09-21 10:51:35 -04:00
PluginStreamParent.cpp Fix streams to work. Be consistent about AStream* for pdata/ndata. Set up pdata before actually calling the constructor. Implement functions which were stubbed out without TODO comments. This passes the stream tests! 2009-09-22 17:06:00 -04:00
PluginStreamParent.h Implement Plugin->Browser streams. In a very basic form the first plugin instantiation passes the new plugin stream tests, but subsequent instantiations don't: I think there's some shutdown/startup issue (the plugin is being unloaded, perhaps?) 2009-09-21 10:51:35 -04:00
PluginThreadChild.cpp bug 523894: wstrings are bad news in OPT builds due to chromium/Mozilla -fshort-wchar mismatch 2009-11-05 18:24:27 -06:00
PluginThreadChild.h bug 523761: give top-level IPDL actors handles to each others' processes. r=bent 2009-10-27 16:52:37 -05:00
PPluginInstance.ipdl Bug 522122. Electrolysis: Forawrd windows events to windowless plugins. r=cjones,karlt 2009-10-27 15:58:33 -04:00
PPluginModule.ipdl bug 525792: fix leaking PluginModules, call NP_Shutdown() on plugins. minor, no r= 2009-11-03 15:37:07 -06:00
PPluginScriptableObject.ipdl bug 523143: switch protocols using nsTArray to native IPDL arrays 2009-10-19 14:10:52 -05:00
PPluginStream.ipdl no need to include in C++ protocol-common headers |include protocol|'d from IPDL. this is an accident of history 2009-11-12 16:20:20 -06:00
PStreamNotify.ipdl Implement NPN_GetURLNotify/NPN_PostURLNotify/NPP_URLNotify. Still without any tests! 2009-09-08 17:22:50 -04:00
StreamNotifyChild.h More plugin crash fixes: failure from NPP_Write doesn't actually destroy the stream, it just tells the browser to destroy the stream. NPP_NewStream resulting from NPN_GetURLNotify didn't have the notifyData field set correctly. Other minor logging and cleanup. 2009-09-23 19:00:23 -04:00
StreamNotifyParent.h Implement NPN_GetURLNotify/NPN_PostURLNotify/NPP_URLNotify. Still without any tests! 2009-09-08 17:22:50 -04:00