| Index: content/browser/plugin_service_impl.cc
|
| diff --git a/content/browser/plugin_service_impl.cc b/content/browser/plugin_service_impl.cc
|
| index 1ddcf4012a1370476422bc66ce01e6cf372881f9..96216c130dfde685f654ed7dc4fff201dcb1a921 100644
|
| --- a/content/browser/plugin_service_impl.cc
|
| +++ b/content/browser/plugin_service_impl.cc
|
| @@ -547,9 +547,9 @@ bool PluginServiceImpl::GetPluginInfoByPath(const base::FilePath& plugin_path,
|
| return false;
|
| }
|
|
|
| -string16 PluginServiceImpl::GetPluginDisplayNameByPath(
|
| +base::string16 PluginServiceImpl::GetPluginDisplayNameByPath(
|
| const base::FilePath& path) {
|
| - string16 plugin_name = path.LossyDisplayName();
|
| + base::string16 plugin_name = path.LossyDisplayName();
|
| WebPluginInfo info;
|
| if (PluginService::GetInstance()->GetPluginInfoByPath(path, &info) &&
|
| !info.name.empty()) {
|
|
|