| Index: content/common/set_process_title.cc
 | 
| diff --git a/content/common/set_process_title.cc b/content/common/set_process_title.cc
 | 
| index 74651ca6c3e437e365d0f7309a84a6f34edd3a6e..229524e6874072085c934f789de0cd4d4d5d429e 100644
 | 
| --- a/content/common/set_process_title.cc
 | 
| +++ b/content/common/set_process_title.cc
 | 
| @@ -59,7 +59,7 @@ void SetProcessTitleFromCommandLine(const char** main_argv) {
 | 
|      // If the binary has since been deleted, Linux appends " (deleted)" to the
 | 
|      // symlink target. Remove it, since this is not really part of our name.
 | 
|      const std::string kDeletedSuffix = " (deleted)";
 | 
| -    if (EndsWith(title, kDeletedSuffix, true))
 | 
| +    if (base::EndsWith(title, kDeletedSuffix, true))
 | 
|        title.resize(title.size() - kDeletedSuffix.size());
 | 
|  
 | 
|      // PR_SET_NAME is available in Linux 2.6.9 and newer.
 | 
| 
 |