Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(590)

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/VTTScanner.h

Issue 2393633005: reflow comments in core/imagebitmap,core/html/track (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698