| Index: chrome/browser/hang_monitor/hung_plugin_action.cc
|
| ===================================================================
|
| --- chrome/browser/hang_monitor/hung_plugin_action.cc (revision 212806)
|
| +++ chrome/browser/hang_monitor/hung_plugin_action.cc (working copy)
|
| @@ -11,10 +11,10 @@
|
| #include "chrome/browser/ui/simple_message_box.h"
|
| #include "chrome/common/logging_chrome.h"
|
| #include "content/public/browser/plugin_service.h"
|
| +#include "content/public/common/webplugininfo.h"
|
| #include "grit/generated_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/win/hwnd_util.h"
|
| -#include "webkit/plugins/webplugininfo.h"
|
|
|
| namespace {
|
|
|
| @@ -41,7 +41,7 @@
|
| GTalkPluginLogVersion GetGTalkPluginVersion(const string16& version) {
|
| int gtalk_plugin_version = GTALK_PLUGIN_VERSION_MIN;
|
| Version plugin_version;
|
| - webkit::WebPluginInfo::CreateVersionFromString(version, &plugin_version);
|
| + content::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;
|
|
|