Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(424)

Unified Diff: webkit/plugins/npapi/plugin_lib_posix.cc

Issue 6205004: Re-land: add support for blocking out-of-date plug-ins on Linux.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/npapi/plugin_lib.h ('k') | webkit/plugins/npapi/plugin_lib_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_lib_posix.cc
===================================================================
--- webkit/plugins/npapi/plugin_lib_posix.cc (revision 70986)
+++ webkit/plugins/npapi/plugin_lib_posix.cc (working copy)
@@ -185,18 +185,25 @@
if (NP_GetValue) {
const char* name = NULL;
NP_GetValue(NULL, nsPluginVariable_NameString, &name);
- if (name)
+ if (name) {
info->name = UTF8ToUTF16(name);
+ ExtractVersionString(name, info);
+ }
const char* description = NULL;
NP_GetValue(NULL, nsPluginVariable_DescriptionString, &description);
- if (description)
+ if (description) {
info->desc = UTF8ToUTF16(description);
+ if (info->version.empty())
+ ExtractVersionString(description, info);
+ }
LOG_IF(ERROR, PluginList::DebugPluginLoading())
<< "Got info for plugin " << filename.value()
<< " Name = \"" << UTF16ToUTF8(info->name)
- << "\", Description = \"" << UTF16ToUTF8(info->desc) << "\".";
+ << "\", Description = \"" << UTF16ToUTF8(info->desc)
+ << "\", Version = \"" << UTF16ToUTF8(info->version)
+ << "\".";
} else {
LOG_IF(ERROR, PluginList::DebugPluginLoading())
<< "Plugin " << filename.value()
@@ -252,6 +259,38 @@
}
}
+// static
+void PluginLib::ExtractVersionString(const std::string& desc,
+ WebPluginInfo* info) {
+ // This matching works by extracting a version substring, along the lines of:
+ // No postfix: second match in .*<prefix>.*$
+ // With postfix: second match .*<prefix>.*<postfix>
+ static const struct {
+ const char* kPrefix;
+ const char* kPostfix;
+ } kPrePostFixes[] = {
+ { "Shockwave Flash ", 0 },
+ { "Java(TM) Plug-in ", 0 },
+ { "(using IcedTea6 ", " " },
+ { 0, 0 }
+ };
+ std::string version;
+ for (size_t i = 0; kPrePostFixes[i].kPrefix; ++i) {
+ size_t pos;
+ if ((pos = desc.find(kPrePostFixes[i].kPrefix)) != std::string::npos) {
+ version = desc.substr(pos + strlen(kPrePostFixes[i].kPrefix));
+ pos = std::string::npos;
+ if (kPrePostFixes[i].kPostfix)
+ pos = version.find(kPrePostFixes[i].kPostfix);
+ if (pos != std::string::npos)
+ version = version.substr(0, pos);
+ break;
+ }
+ }
+ if (!version.empty()) {
+ info->version = UTF8ToUTF16(version);
+ }
+}
} // namespace npapi
} // namespace webkit
« no previous file with comments | « webkit/plugins/npapi/plugin_lib.h ('k') | webkit/plugins/npapi/plugin_lib_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698