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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLSourceTracker.cpp

Issue 2386893002: Reformat comments in core/html/parser (Closed)
Patch Set: self review 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/parser/HTMLSourceTracker.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLSourceTracker.cpp b/third_party/WebKit/Source/core/html/parser/HTMLSourceTracker.cpp
index 38ee25fb519e811c45a0340d04a09f951ea985a2..aaec23e519e49a975365549964c783acefc9164b 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLSourceTracker.cpp
+++ b/third_party/WebKit/Source/core/html/parser/HTMLSourceTracker.cpp
@@ -66,7 +66,8 @@ String HTMLSourceTracker::sourceForToken(const HTMLToken& token) {
size_t length;
if (token.type() == HTMLToken::EndOfFile) {
- // Consume the remainder of the input, omitting the null character we use to mark the end of the file.
+ // Consume the remainder of the input, omitting the null character we use to
+ // mark the end of the file.
length = m_previousSource.length() + m_currentSource.length() - 1;
} else {
ASSERT(!token.startIndex());

Powered by Google App Engine
This is Rietveld 408576698