| Index: third_party/WebKit/Source/core/html/track/vtt/VTTScanner.h
|
| diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTScanner.h b/third_party/WebKit/Source/core/html/track/vtt/VTTScanner.h
|
| index 7133236c5f32f0fe3d406cf948f53c29d7092de1..89a991d9b9983c9dd4b39be5e8d6672431fd99b4 100644
|
| --- a/third_party/WebKit/Source/core/html/track/vtt/VTTScanner.h
|
| +++ b/third_party/WebKit/Source/core/html/track/vtt/VTTScanner.h
|
| @@ -82,7 +82,8 @@ class CORE_EXPORT VTTScanner {
|
| }
|
| // Check if the input pointer points at the end of the input.
|
| bool isAtEnd() const { return getPosition() == end(); }
|
| - // Match the character |c| against the character at the input pointer (~lookahead).
|
| + // Match the character |c| against the character at the input pointer
|
| + // (~lookahead).
|
| bool match(char c) const { return !isAtEnd() && currentChar() == c; }
|
| // Scan the character |c|.
|
| bool scan(char);
|
|
|