diff --git a/autobuild.xml b/autobuild.xml
index 5dcc9a980a..2f2ab55012 100644
--- a/autobuild.xml
+++ b/autobuild.xml
@@ -448,11 +448,11 @@
archive
name
darwin64
@@ -476,11 +476,11 @@
archive
name
windows64
@@ -493,7 +493,7 @@
copyright
Copyright (c) 2017, Linden Research, Inc.
version
- 1.16.0.202508120105_139.0.17_g6c347eb_chromium-139.0.7258.31
+ 1.20.0.202508222243_139.0.28_g55ab8a8_chromium-139.0.7258.139
name
dullahan
description
diff --git a/indra/media_plugins/cef/media_plugin_cef.cpp b/indra/media_plugins/cef/media_plugin_cef.cpp
index 3f45ac971a..52df4a9685 100644
--- a/indra/media_plugins/cef/media_plugin_cef.cpp
+++ b/indra/media_plugins/cef/media_plugin_cef.cpp
@@ -110,8 +110,6 @@ private:
bool mCanCopy;
bool mCanPaste;
std::string mRootCachePath;
- std::string mCachePath;
- std::string mContextCachePath;
std::string mCefLogFile;
bool mCefLogVerbose;
std::vector mPickedFiles;
@@ -149,7 +147,6 @@ MediaPluginBase(host_send_func, host_user_data)
mCanCut = false;
mCanCopy = false;
mCanPaste = false;
- mCachePath = "";
mCefLogFile = "";
mCefLogVerbose = false;
mPickedFiles.clear();
@@ -649,10 +646,7 @@ void MediaPluginCEF::receiveMessage(const char* message_string)
// and set it to white
settings.background_color = 0xffffffff; // white
- settings.cache_enabled = true;
settings.root_cache_path = mRootCachePath;
- settings.cache_path = mCachePath;
- settings.context_cache_path = mContextCachePath;
settings.cookies_enabled = mCookiesEnabled;
// configure proxy argument if enabled and valid
@@ -768,15 +762,7 @@ void MediaPluginCEF::receiveMessage(const char* message_string)
mRootCachePath += std::to_string(getpid());
# endif
- if (!subfolder.empty())
- {
- mCachePath = mRootCachePath + path_separator + subfolder;
- }
- else
- {
- mCachePath = mRootCachePath;
- }
- mContextCachePath = ""; // disabled by ""
+
mCefLogFile = message_in.getValue("cef_log_file");
mCefLogVerbose = message_in.getValueBoolean("cef_verbose_log");
}