cef 加载flash 弹框_解决CEF中显示Flash动画弹出安全警告问题

本文介绍了在CEF中加载Flash时遇到的安全警告问题及解决方法。通过在CefApp.cs文件中设置Flash路径和版本号,配置Cef缓存,设置Flash信任目录,以及详细说明如何添加受信任位置来消除警告。同时提到了两种添加信任位置的方法,并引用了深入理解Flash Player安全域的文章作为参考。
摘要由CSDN通过智能技术生成

一、

1、Xilium.CefGlue. CefApp (CefApp.cs文件)类on_before_command_line_processing方法内设置flash路径、版本号等。

m_commandLine.AppendSwitch("ppapi-flash-path", @"*\PepperFlash\pepflashplayer.dll");

m_commandLine.AppendSwitch("ppapi-flash-version", "2*.*.*.306");

2、设置Cef缓存

cefSettings = new CefSettings

{

CachePath = @"Temp\Cache\",

NoSandbox = false,

****

};

3、设置Cef Flash 信任目录

//flash信任路径配置文件夹

string strFlashSettingPath = string.Format(@"{0}Temp\Cache\Pepper Data\Shockwave Flash\WritableRoot\#Security\FlashPlayerTrust", AppDomain.CurrentDomain.BaseDirectory);

if (!Directory.Exists(strFlashSettingPath))

{

Directory.CreateDirectory(strFlashSettingPath);

}

//flash配置文件路径

string strFlashSettingFilePath = Path.Comb

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值