| Index: base/strings/string_number_conversions.cc
 | 
| diff --git a/base/strings/string_number_conversions.cc b/base/strings/string_number_conversions.cc
 | 
| index 642d24e9ada11ad61444fcadd81a0accddb0df65..b1b25d27af818bffe4c0b65bb410583dfddc020b 100644
 | 
| --- a/base/strings/string_number_conversions.cc
 | 
| +++ b/base/strings/string_number_conversions.cc
 | 
| @@ -131,10 +131,10 @@ template<int BASE, typename CHAR> bool CharToDigit(CHAR c, uint8* digit) {
 | 
|    return BaseCharToDigit<CHAR, BASE, BASE <= 10>::Convert(c, digit);
 | 
|  }
 | 
|  
 | 
| -// There is an IsWhitespace for wchars defined in string_util.h, but it is
 | 
| -// locale independent, whereas the functions we are replacing were
 | 
| -// locale-dependent. TBD what is desired, but for the moment let's not introduce
 | 
| -// a change in behaviour.
 | 
| +// There is an IsUnicodeWhitespace for wchars defined in string_util.h, but it
 | 
| +// is locale independent, whereas the functions we are replacing were
 | 
| +// locale-dependent. TBD what is desired, but for the moment let's not
 | 
| +// introduce a change in behaviour.
 | 
|  template<typename CHAR> class WhitespaceHelper {
 | 
|  };
 | 
|  
 | 
| 
 |