Index: chrome/browser/web_applications/web_app_mac.mm |
diff --git a/chrome/browser/web_applications/web_app_mac.mm b/chrome/browser/web_applications/web_app_mac.mm |
index f5c8e8d1e2796c4df75cc8088b143ba350e28703..d6f47a67718d06b34615de4182387ced4210623a 100644 |
--- a/chrome/browser/web_applications/web_app_mac.mm |
+++ b/chrome/browser/web_applications/web_app_mac.mm |
@@ -183,7 +183,7 @@ bool HasExistingExtensionShim(const base::FilePath& destination_directory, |
for (base::FilePath shim_path = enumerator.Next(); |
!shim_path.empty(); shim_path = enumerator.Next()) { |
if (shim_path.BaseName() != own_basename && |
- EndsWith(shim_path.RemoveExtension().value(), |
+ base::EndsWith(shim_path.RemoveExtension().value(), |
extension_id, |
true /* case_sensitive */)) { |
return true; |