| Index: chrome/browser/tab_contents/tab_contents.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents.cc (revision 69426)
|
| +++ chrome/browser/tab_contents/tab_contents.cc (working copy)
|
| @@ -113,7 +113,7 @@
|
| #include "third_party/WebKit/WebKit/chromium/public/WebView.h"
|
| #include "webkit/glue/webpreferences.h"
|
| #include "webkit/glue/password_form.h"
|
| -#include "webkit/glue/plugins/plugin_list.h"
|
| +#include "webkit/plugins/npapi/plugin_list.h"
|
|
|
| // Cross-Site Navigations
|
| //
|
| @@ -2092,8 +2092,8 @@
|
| DCHECK(!plugin_path.value().empty());
|
|
|
| std::wstring plugin_name = plugin_path.ToWStringHack();
|
| - WebPluginInfo plugin_info;
|
| - if (NPAPI::PluginList::Singleton()->GetPluginInfoByPath(
|
| + webkit::npapi::WebPluginInfo plugin_info;
|
| + if (webkit::npapi::PluginList::Singleton()->GetPluginInfoByPath(
|
| plugin_path, &plugin_info) &&
|
| !plugin_info.name.empty()) {
|
| plugin_name = UTF16ToWide(plugin_info.name);
|
|
|