| 190 | } |
| 191 | |
| 192 | bool TrimString(const string16& input, |
| 193 | const butil::StringPiece16& trim_chars, |
| 194 | string16* output) { |
| 195 | return TrimStringT(input, trim_chars.as_string(), TRIM_ALL, output) != |
| 196 | TRIM_NONE; |
| 197 | } |
| 198 | |
| 199 | bool TrimString(const std::string& input, |
| 200 | const butil::StringPiece& trim_chars, |
nothing calls this directly
no test coverage detected