提问人:HandyCreative 提问时间:11/15/2023 最后编辑:HandyCreative 更新时间:11/15/2023 访问量:19
CefSharp ppapi 插件进程崩溃
CefSharp ppapi plugin process crashed
问:
我的项目的配置;
- CefSharp 版本 : 75.0.3770.100
- PepFlashPlayer版本:32.0.0.371
- .NET 4.0.30319
应用程序随机崩溃,显示空白的 Flash 图像。 下面是调试.log.:
[1115/080911.530:VERBOSE1:ppapi_plugin_process_host.cc(490)] PpapiPluginProcessHost::OnChannelError()
[1115/080911.530:VERBOSE1:ppapi_plugin_process_host.cc(459)] ppapi plugin process crashed.
[1115/081010.266:VERBOSE1:statistics_recorder.cc(410)] Collections of all histograms
我无法升级 CefSharp,因为我的应用程序仍然依赖于 Flash 插件。
我现有的一些 CefSettings:
settings.SetOffScreenRenderingBestPerformanceArgs();
settings.CefCommandLineArgs.Add("enable-npapi", "1");
//Enable NPAPI plugs which were disabled by default in Chromium 43 (NPAPI will be removed completely in Chromium 45)
currentPath = String.Format(@"C:\ProgramData\CefSharpTest");
settings.CefCommandLineArgs.Add("ppapi-flash-path",
Path.Combine(currentPath, "pepflashplayer.dll"));
答: 暂无答案
评论
CefSharp