mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 778858 - Enable OOP plugins in webapprt by default. r=myk
This commit is contained in:
parent
c4b850fa68
commit
26c63a0c38
@ -36,3 +36,16 @@ pref("full-screen-api.enabled", true);
|
||||
pref("general.smoothScroll", true);
|
||||
|
||||
pref("plugin.allowed_types", "application/x-shockwave-flash,application/futuresplash");
|
||||
|
||||
// The default for this pref reflects whether the build is capable of IPC.
|
||||
// (Turning it on in a no-IPC build will have no effect.)
|
||||
#ifdef XP_MACOSX
|
||||
// i386 ipc preferences
|
||||
pref("dom.ipc.plugins.enabled.i386", false);
|
||||
pref("dom.ipc.plugins.enabled.i386.flash player.plugin", true);
|
||||
// x86_64 ipc preferences
|
||||
pref("dom.ipc.plugins.enabled.x86_64", true);
|
||||
#else
|
||||
pref("dom.ipc.plugins.enabled", true);
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user