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

Unified Diff: third_party/WebKit/Source/core/editing/iterators/WordAwareIterator.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit 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/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.
+ : m_didLookAhead(true),
m_textIterator(start, end) {
advance(); // Get in position over the first chunk of text.
}

Powered by Google App Engine
This is Rietveld 408576698