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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h

Issue 2397033002: Reflow comments in //third_party/WebKit/Source/core/editing/iterators (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/editing/iterators/TextIteratorTextState.h
diff --git a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
index 2675cecc545c06eca3592e2dd31b377fa337e52a..03a122c9a3f180e8a36aacb3865187b0e17a7cd0 100644
--- a/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
+++ b/third_party/WebKit/Source/core/editing/iterators/TextIteratorTextState.h
@@ -81,17 +81,20 @@ class CORE_EXPORT TextIteratorTextState {
int m_textLength;
String m_text;
- // Used for whitespace characters that aren't in the DOM, so we can point at them.
+ // Used for whitespace characters that aren't in the DOM, so we can point at
+ // them.
// If non-zero, overrides m_text.
UChar m_singleCharacterBuffer;
- // The current text and its position, in the form to be returned from the iterator.
+ // The current text and its position, in the form to be returned from the
+ // iterator.
Member<Node> m_positionNode;
mutable Member<Node> m_positionOffsetBaseNode;
mutable int m_positionStartOffset;
mutable int m_positionEndOffset;
- // Used when deciding whether to emit a "positioning" (e.g. newline) before any other content
+ // Used when deciding whether to emit a "positioning" (e.g. newline) before
+ // any other content
bool m_hasEmitted;
UChar m_lastCharacter;
bool m_emitsOriginalText;

Powered by Google App Engine
This is Rietveld 408576698