Index: content/common/set_process_title.cc |
diff --git a/content/common/set_process_title.cc b/content/common/set_process_title.cc |
index 229524e6874072085c934f789de0cd4d4d5d429e..d74af9611bb25a5d4b2ab0e658aaa5c962028a67 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 (base::EndsWith(title, kDeletedSuffix, true)) |
+ if (base::EndsWith(title, kDeletedSuffix, base::CompareCase::SENSITIVE)) |
title.resize(title.size() - kDeletedSuffix.size()); |
// PR_SET_NAME is available in Linux 2.6.9 and newer. |