| 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;
|
|
|