Index: content/browser/plugin_data_remover_impl.cc |
diff --git a/content/browser/plugin_data_remover_impl.cc b/content/browser/plugin_data_remover_impl.cc |
index 7981453ed28d5d3f61efa8f4023cd72a93c72d19..e5927934b111c13b3f19e1b7db2dcc4a07913a4e 100644 |
--- a/content/browser/plugin_data_remover_impl.cc |
+++ b/content/browser/plugin_data_remover_impl.cc |
@@ -19,7 +19,6 @@ |
#include "content/public/browser/browser_thread.h" |
#include "content/public/common/pepper_plugin_info.h" |
#include "ppapi/proxy/ppapi_messages.h" |
-#include "webkit/plugins/npapi/plugin_group.h" |
namespace content { |
@@ -49,7 +48,7 @@ void PluginDataRemover::GetSupportedPlugins( |
for (std::vector<webkit::WebPluginInfo>::iterator it = plugins.begin(); |
it != plugins.end(); ++it) { |
Version version; |
- webkit::npapi::PluginGroup::CreateVersionFromString(it->version, &version); |
+ webkit::WebPluginInfo::CreateVersionFromString(it->version, &version); |
if (version.IsValid() && min_version.CompareTo(version) == -1) |
supported_plugins->push_back(*it); |
} |