| Index: chrome/common/importer/firefox_importer_utils.cc
 | 
| diff --git a/chrome/common/importer/firefox_importer_utils.cc b/chrome/common/importer/firefox_importer_utils.cc
 | 
| index 4e9a8554e0b1b7423a3cd865b1a402de10b7b3fd..f82461433d994bb53b1cc2a28a2233218278a62b 100644
 | 
| --- a/chrome/common/importer/firefox_importer_utils.cc
 | 
| +++ b/chrome/common/importer/firefox_importer_utils.cc
 | 
| @@ -116,7 +116,7 @@ bool ComposeMacAppPath(const std::string& path_from_file,
 | 
|    // append Contents/MacOS.
 | 
|    for (size_t i = 1; i < path_components.size(); ++i) {
 | 
|      *output = output->Append(path_components[i]);
 | 
| -    if (EndsWith(path_components[i], ".app", true)) {
 | 
| +    if (base::EndsWith(path_components[i], ".app", true)) {
 | 
|        *output = output->Append("Contents");
 | 
|        *output = output->Append("MacOS");
 | 
|        return true;
 | 
| 
 |