Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
| diff --git a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
| index ff3de05d1391139db2c952726c3d1a0c40daf3cb..86e8b6341765d8089a5d7a338b169643c6d6968a 100644 |
| --- a/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
| +++ b/third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h |
| @@ -9,9 +9,11 @@ |
| namespace blink { |
| -// Implementation of DocumentMarkerList for Spelling/Grammar markers. |
| -// Markers with touching endpoints are merged on insert. Markers are kept sorted |
| -// by start offset in order to be able to do this efficiently. |
| +// Nearly-complete implementation of DocumentMarkerList for Spelling or Grammar |
| +// markers (subclassed by SpellingMarkerListImpl and GrammarMarkerListImpl to |
| +// implement the MarkerType() method). Markers with touching endpoints are |
| +// merged on insert. Markers are kept sorted by start offset in order to be able |
| +// to do this efficiently. |
| class CORE_EXPORT SpellCheckMarkerListImpl : public DocumentMarkerList { |
| public: |
| SpellCheckMarkerListImpl() = default; |
|
yosin_UTC9
2017/05/12 05:00:04
nit: We should get move ctor of SpellCheckMarkerLi
|