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 | b1999722be317f2b293ad3e4a68310a82a467fc0 (patch) | |
tree | e38c38654cebe58060b1947ed50a71eaf2c199ce /indra/media_plugins/cef/media_plugin_cef.cpp | |
parent | 66f07e418e5c402f6328f0701cffd1314af56ad5 (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/cef/media_plugin_cef.cpp')
-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); |