diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-04-13 16:30:08 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-04-13 16:30:08 +0100 |
commit | abec5d6c9b72f1d22c97593d682106e58e241aa6 (patch) | |
tree | 5a26680da2f4305f35a953af7c69bbed571bbcc5 /indra/newview/llappviewer.cpp | |
parent | f7134144a6ed8f5710d02a84ad3ad5dc29cb0bd5 (diff) | |
parent | 41f4e854732a7c75a813b2e99285cc41bde13e5e (diff) |
merge, mac build fix
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 190609bc7a..e1d3915387 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1943,8 +1943,6 @@ bool LLAppViewer::cleanup() LLAvatarIconIDCache::getInstance()->save(); - LLViewerMedia::saveCookieFile(); - // Stop the plugin read thread if it's running. LLPluginProcessParent::setUseReadThread(false); @@ -3182,8 +3180,14 @@ LLSD LLAppViewer::getViewerInfo() const cef_ver_codec << " / CEF: "; cef_ver_codec << CEF_VERSION; - cef_ver_codec << " / Chrome: "; + cef_ver_codec << " / Chromium: "; cef_ver_codec << CHROME_VERSION_MAJOR; + cef_ver_codec << "."; + cef_ver_codec << CHROME_VERSION_MINOR; + cef_ver_codec << "."; + cef_ver_codec << CHROME_VERSION_BUILD; + cef_ver_codec << "."; + cef_ver_codec << CHROME_VERSION_PATCH; info["LIBCEF_VERSION"] = cef_ver_codec.str(); #else |