| Index: base/string_util.cc
|
| ===================================================================
|
| --- base/string_util.cc (revision 10694)
|
| +++ base/string_util.cc (working copy)
|
| @@ -367,8 +367,6 @@
|
| 0x0C,
|
| 0x0D,
|
| 0x20, // Space
|
| - '\x85', // <control-0085>
|
| - '\xa0', // No-Break Space
|
| 0
|
| };
|
| const char* const kCodepageUTF8 = "UTF-8";
|
| @@ -423,10 +421,18 @@
|
| return TrimStringT(input, kWhitespaceWide, positions, output);
|
| }
|
|
|
| +TrimPositions TrimWhitespaceASCII(const std::string& input,
|
| + TrimPositions positions,
|
| + std::string* output) {
|
| + return TrimStringT(input, kWhitespaceASCII, positions, output);
|
| +}
|
| +
|
| +// This function is only for backward-compatibility.
|
| +// To be removed when all callers are updated.
|
| TrimPositions TrimWhitespace(const std::string& input,
|
| TrimPositions positions,
|
| std::string* output) {
|
| - return TrimStringT(input, kWhitespaceASCII, positions, output);
|
| + return TrimWhitespaceASCII(input, positions, output);
|
| }
|
|
|
| std::wstring CollapseWhitespace(const std::wstring& text,
|
|
|