| 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..030ba4db5c1fde917f140293acbfad6c5ee893d6 100644
|
| --- a/content/browser/plugin_data_remover_impl.cc
|
| +++ b/content/browser/plugin_data_remover_impl.cc
|
| @@ -19,7 +19,7 @@
|
| #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"
|
| +#include "webkit/plugins/npapi/plugin_utils.h"
|
|
|
| namespace content {
|
|
|
| @@ -49,7 +49,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::npapi::CreateVersionFromString(it->version, &version);
|
| if (version.IsValid() && min_version.CompareTo(version) == -1)
|
| supported_plugins->push_back(*it);
|
| }
|
|
|