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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLToken.h

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/HTMLToken.h
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLToken.h b/third_party/WebKit/Source/core/html/parser/HTMLToken.h
index 438e8ee63819519ba35ab5b3709faaf3bafe6499..97311d45034c93af7058e8c52c237205f177f0ed 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLToken.h
+++ b/third_party/WebKit/Source/core/html/parser/HTMLToken.h
@@ -141,9 +141,9 @@ class HTMLToken {
typedef Vector<Attribute, 10> AttributeList;
- // By using an inline capacity of 256, we avoid spilling over into an malloced buffer
- // approximately 99% of the time based on a non-scientific browse around a number of
- // popular web sites on 23 May 2013.
+ // By using an inline capacity of 256, we avoid spilling over into an malloced
+ // buffer approximately 99% of the time based on a non-scientific browse
+ // around a number of popular web sites on 23 May 2013.
typedef Vector<UChar, 256> DataVector;
HTMLToken() { clear(); }
@@ -170,7 +170,8 @@ class HTMLToken {
m_type = EndOfFile;
}
- /* Range and offset methods exposed for HTMLSourceTracker and HTMLViewSourceParser */
+ // Range and offset methods exposed for HTMLSourceTracker and
+ // HTMLViewSourceParser.
int startIndex() const { return m_range.start; }
int endIndex() const { return m_range.end; }

Powered by Google App Engine
This is Rietveld 408576698