| Index: chrome/browser/hang_monitor/hung_plugin_action.cc
|
| diff --git a/chrome/browser/hang_monitor/hung_plugin_action.cc b/chrome/browser/hang_monitor/hung_plugin_action.cc
|
| index aafff33a858017580bb70680e7167d3840b3a9fc..34318d7806340b0df646b12fea8bc835df213720 100644
|
| --- a/chrome/browser/hang_monitor/hung_plugin_action.cc
|
| +++ b/chrome/browser/hang_monitor/hung_plugin_action.cc
|
| @@ -15,6 +15,7 @@
|
| #include "ui/base/win/hwnd_util.h"
|
| #include "webkit/plugins/npapi/plugin_group.h"
|
| #include "webkit/plugins/npapi/webplugin_delegate_impl.h"
|
| +#include "webkit/plugins/webplugininfo.h"
|
|
|
| namespace {
|
|
|
| @@ -41,7 +42,7 @@ enum GTalkPluginLogVersion {
|
| GTalkPluginLogVersion GetGTalkPluginVersion(const string16& version) {
|
| int gtalk_plugin_version = GTALK_PLUGIN_VERSION_MIN;
|
| Version plugin_version;
|
| - webkit::npapi::PluginGroup::CreateVersionFromString(version, &plugin_version);
|
| + webkit::WebPluginInfo::CreateVersionFromString(version, &plugin_version);
|
| if (plugin_version.IsValid() && plugin_version.components().size() >= 2) {
|
| gtalk_plugin_version = 10 * plugin_version.components()[0] +
|
| plugin_version.components()[1] - kGTalkPluginLogMinVersion;
|
|
|