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

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/VTTTokenizer.cpp

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/VTTTokenizer.cpp
diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTTokenizer.cpp b/third_party/WebKit/Source/core/html/track/vtt/VTTTokenizer.cpp
index 9150d79969d1c1f3a3a3ef2ae63ca574b6931261..83cf8e66e748a43c4884dec8f12dd6c39d397f41 100644
--- a/third_party/WebKit/Source/core/html/track/vtt/VTTTokenizer.cpp
+++ b/third_party/WebKit/Source/core/html/track/vtt/VTTTokenizer.cpp
@@ -115,8 +115,9 @@ bool VTTTokenizer::nextToken(VTTToken& token) {
if (result.isEmpty()) {
WEBVTT_ADVANCE_TO(TagState);
} else {
- // We don't want to advance input or perform a state transition - just return a (new) token.
- // (On the next call to nextToken we will see '<' again, but take the other branch in this if instead.)
+ // We don't want to advance input or perform a state transition - just
+ // return a (new) token. (On the next call to nextToken we will see
+ // '<' again, but take the other branch in this if instead.)
return emitToken(token, VTTToken::StringToken(result.toString()));
}
} else if (cc == kEndOfFileMarker) {

Powered by Google App Engine
This is Rietveld 408576698