author | Ms2ger <ms2ger@gmail.com> |
Tue, 10 Sep 2013 09:03:35 +0200 (2013-09-10) | |
changeset 146238 | ad53eef2175a1a2ef12084f16ce29bdca9640610 |
parent 146237 | 9d8cdcdc2c0b26901d29bf5034ebb4fe94011f1d |
child 146239 | 424b6a293ad696d11eaa3c7b3a63bc6071a6db86 |
push id | 25250 |
push user | Ms2ger@gmail.com |
push date | Tue, 10 Sep 2013 07:05:27 +0000 (2013-09-10) |
treeherder | mozilla-central@be1053dc223b [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ehsan |
bugs | 913953 |
milestone | 26.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/ipc/chromium/src/base/string_util.h +++ b/ipc/chromium/src/base/string_util.h @@ -250,17 +250,9 @@ inline typename string_type::value_type* // Every substring is trimmed of any leading or trailing white space. void SplitString(const std::wstring& str, wchar_t s, std::vector<std::wstring>* r); void SplitString(const std::string& str, char s, std::vector<std::string>* r); -// Returns true if the string passed in matches the pattern. The pattern -// string can contain wildcards like * and ? -// TODO(iyengar) This function may not work correctly for CJK strings as -// it does individual character matches. -// The backslash character (\) is an escape character for * and ? -bool MatchPattern(const std::wstring& string, const std::wstring& pattern); -bool MatchPattern(const std::string& string, const std::string& pattern); - #endif // BASE_STRING_UTIL_H_