| Index: base/string_util.cc
|
| diff --git a/base/string_util.cc b/base/string_util.cc
|
| index a62b905227ec58c7474629243bb9744309958074..11ac623dc63d754b307c3edec0667de563725c65 100644
|
| --- a/base/string_util.cc
|
| +++ b/base/string_util.cc
|
| @@ -851,6 +851,11 @@ bool EndsWithT(const STR& str, const STR& search, bool case_sensitive) {
|
| }
|
| }
|
|
|
| +bool EndsWith(const std::string& str, const std::string& search,
|
| + bool case_sensitive) {
|
| + return EndsWithT(str, search, case_sensitive);
|
| +}
|
| +
|
| bool EndsWith(const std::wstring& str, const std::wstring& search,
|
| bool case_sensitive) {
|
| return EndsWithT(str, search, case_sensitive);
|
|
|