Index: content/browser/plugin_service_impl.cc |
diff --git a/content/browser/plugin_service_impl.cc b/content/browser/plugin_service_impl.cc |
index 678171c753277165437a7db22213fc1c515cd3dc..93140c27ef88a06e8a1539c2463f5b760dbcc7cc 100644 |
--- a/content/browser/plugin_service_impl.cc |
+++ b/content/browser/plugin_service_impl.cc |
@@ -581,7 +581,7 @@ base::string16 PluginServiceImpl::GetPluginDisplayNameByPath( |
// Many plugins on the Mac have .plugin in the actual name, which looks |
// terrible, so look for that and strip it off if present. |
const std::string kPluginExtension = ".plugin"; |
- if (EndsWith(plugin_name, base::ASCIIToUTF16(kPluginExtension), true)) |
+ if (base::EndsWith(plugin_name, base::ASCIIToUTF16(kPluginExtension), true)) |
plugin_name.erase(plugin_name.length() - kPluginExtension.length()); |
#endif // OS_MACOSX |
} |