| Index: base/string_util.cc
|
| diff --git a/base/string_util.cc b/base/string_util.cc
|
| index 494d09d2a605171ea0eab162b7e8fc70ed8c97d9..6cb08aac45dfc58650614384621be2063cd49028 100644
|
| --- a/base/string_util.cc
|
| +++ b/base/string_util.cc
|
| @@ -1358,20 +1358,6 @@ void SplitStringUsingSubstr(const std::string& str,
|
| SplitStringUsingSubstrT(str, s, r);
|
| }
|
|
|
| -std::vector<string16> SplitStringUsingSubstr(const string16& str,
|
| - const string16& s) {
|
| - std::vector<string16> result;
|
| - SplitStringUsingSubstr(str, s, &result);
|
| - return result;
|
| -}
|
| -
|
| -std::vector<std::string> SplitStringUsingSubstr(const std::string& str,
|
| - const std::string& s) {
|
| - std::vector<std::string> result;
|
| - SplitStringUsingSubstr(str, s, &result);
|
| - return result;
|
| -}
|
| -
|
| template<typename STR>
|
| static size_t TokenizeT(const STR& str,
|
| const STR& delimiters,
|
|
|