| Index: third_party/WebKit/Source/wtf/ASCIICType.h
|
| diff --git a/third_party/WebKit/Source/wtf/ASCIICType.h b/third_party/WebKit/Source/wtf/ASCIICType.h
|
| index 4404d4c66b388b4772c1497a915296bd82c22f3d..3251ab8a14612e6c3aa72bfadf43e6ffea13b547 100644
|
| --- a/third_party/WebKit/Source/wtf/ASCIICType.h
|
| +++ b/third_party/WebKit/Source/wtf/ASCIICType.h
|
| @@ -34,13 +34,15 @@
|
|
|
| // The behavior of many of the functions in the <ctype.h> header is dependent
|
| // on the current locale. But in the WebKit project, all uses of those functions
|
| -// are in code processing something that's not locale-specific. These equivalents
|
| -// for some of the <ctype.h> functions are named more explicitly, not dependent
|
| -// on the C library locale, and we should also optimize them as needed.
|
| -
|
| -// All functions return false or leave the character unchanged if passed a character
|
| -// that is outside the range 0-7F. So they can be used on Unicode strings or
|
| -// characters if the intent is to do processing only if the character is ASCII.
|
| +// are in code processing something that's not locale-specific. These
|
| +// equivalents for some of the <ctype.h> functions are named more explicitly,
|
| +// not dependent on the C library locale, and we should also optimize them as
|
| +// needed.
|
| +
|
| +// All functions return false or leave the character unchanged if passed a
|
| +// character that is outside the range 0-7F. So they can be used on Unicode
|
| +// strings or characters if the intent is to do processing only if the
|
| +// character is ASCII.
|
|
|
| namespace WTF {
|
|
|
|
|