Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp |
| diff --git a/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp b/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp |
| index 250b876c83f073e8dd12435394e918e6ed2224a3..0cbd464851801942149b6536941a6d97bc842a88 100644 |
| --- a/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp |
| +++ b/third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp |
| @@ -29,9 +29,8 @@ |
| namespace blink { |
| WordAwareIterator::WordAwareIterator(const Position& start, const Position& end) |
| - : m_didLookAhead( |
| - true) // So we consider the first chunk from the text iterator. |
| - , |
| + // So we consider the first chunk from the text iterator. |
|
Nico
2016/10/05 01:20:08
Yup, like so :-)
jbroman
2016/10/05 13:42:01
Acknowledged.
|
| + : m_didLookAhead(true), |
| m_textIterator(start, end) { |
| advance(); // Get in position over the first chunk of text. |
| } |