-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable Adobe Flash By Default #3048
Comments
I have a created a winforms browser for the purpose of executing many flash files that are stored locally in my web server and I use:
Right now in v79, flash executes without explicit permission. I plan to keep the last cefsharp version that will execute flash files. Will this still work for the time being for v81? |
All I can say is the command line args is going to be removed by default. CEF is not actively supporting flash anymore so it could stop working any time. https://bitbucket.org/chromiumembedded/cef/issues/2768/allow-flash-to-play-without-user#comment-54073974 |
Anyone interested in the status of It is possible to enable the system wide flash using. // Specify Global Settings and Command Line Arguments
var settings = new CefSettings();
// For a limited time you can still enable flash
// Enable System Wide Flash Installation
settings.CefCommandLineArgs.Add("enable-system-flash");
Cef.Initialize(settings); Previously this command line arg was set by default, it was removed in d127981 This is the only change from a If |
Chrome
has disabled it, we should as well (remove theenable-system-flash
command line arg fromCefSettings
).https://www.chromium.org/flash-roadmap#TOC-Flash-Disabled-by-Default-Target:-Chrome-76---July-2019-
It can still be enabled for a limited time.
enable-system-flash
command line argenable-system-flash
The text was updated successfully, but these errors were encountered: