| Index: third_party/WebKit/Source/platform/inspector_protocol/Parser.cpp
|
| diff --git a/third_party/WebKit/Source/platform/inspector_protocol/Parser.cpp b/third_party/WebKit/Source/platform/inspector_protocol/Parser.cpp
|
| index 4193108b279162d232f681cdd0f74ff250c16fff..1a8a10e93c554b1daaa792df0200b2bb32ed9330 100644
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/Parser.cpp
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/Parser.cpp
|
| @@ -200,7 +200,7 @@ bool skipComment(const UChar* start, const UChar* end, const UChar** commentEnd)
|
| void skipWhitespaceAndComments(const UChar* start, const UChar* end, const UChar** whitespaceEnd)
|
| {
|
| while (start < end) {
|
| - if (isSpaceOrNewline(*start)) {
|
| + if (String16::isSpaceOrNewLine(*start)) {
|
| ++start;
|
| } else if (*start == '/') {
|
| const UChar* commentEnd;
|
|
|