diff options
author | callum@gmail.com <callum@gmail.com> | 2019-03-18 15:36:16 -0700 |
---|---|---|
committer | callum@gmail.com <callum@gmail.com> | 2019-03-18 15:36:16 -0700 |
commit | 72f21b399e5a07ee162116f677e643b21e54d7bb (patch) | |
tree | 5e5cbc95259bef090d4bf2d03bbe3d1195dcec92 /indra/media_plugins | |
parent | 2046e01f80035538f998f9e105dfd21c217a660c (diff) |
Pull in a change to Dullahan that allows user to specify flag that lets video/audio autoplay like it did before Chrome 70? (Dullahan v1.1.1320). Also sets a flag in media plugin CEF code to change the settings from false (default) to true
Diffstat (limited to 'indra/media_plugins')
-rw-r--r-- | indra/media_plugins/cef/media_plugin_cef.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/media_plugins/cef/media_plugin_cef.cpp b/indra/media_plugins/cef/media_plugin_cef.cpp index 2bd5526a86..66b316df90 100644 --- a/indra/media_plugins/cef/media_plugin_cef.cpp +++ b/indra/media_plugins/cef/media_plugin_cef.cpp @@ -519,6 +519,7 @@ void MediaPluginCEF::receiveMessage(const char* message_string) settings.webgl_enabled = true; settings.log_file = mCefLogFile; settings.log_verbose = mCefLogVerbose; + settings.autoplay_without_gesture = true; std::vector<std::string> custom_schemes(1, "secondlife"); mCEFLib->setCustomSchemes(custom_schemes); |