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

Side by Side Diff: third_party/WebKit/Source/core/editing/markers/SpellCheckMarkerListImpl.h

Issue 2872353002: [DMC #5.55v2] Add DocumentMarkerList::MarkerType() (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SpellCheckMarkerListImpl_h 5 #ifndef SpellCheckMarkerListImpl_h
6 #define SpellCheckMarkerListImpl_h 6 #define SpellCheckMarkerListImpl_h
7 7
8 #include "core/editing/markers/DocumentMarkerList.h" 8 #include "core/editing/markers/DocumentMarkerList.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 // Implementation of DocumentMarkerList for Spelling/Grammar markers. 12 // Implementation of DocumentMarkerList for Spelling/Grammar markers.
13 // Markers with touching endpoints are merged on insert. Markers are kept sorted 13 // Markers with touching endpoints are merged on insert. Markers are kept sorted
14 // by start offset in order to be able to do this efficiently. 14 // by start offset in order to be able to do this efficiently.
15 class CORE_EXPORT SpellCheckMarkerListImpl : public DocumentMarkerList { 15 class CORE_EXPORT SpellCheckMarkerListImpl : public DocumentMarkerList {
16 public: 16 public:
17 SpellCheckMarkerListImpl() = default; 17 SpellCheckMarkerListImpl(DocumentMarker::MarkerType);
18 18
19 // DocumentMarkerList implementations 19 // DocumentMarkerList implementations
20 DocumentMarker::MarkerType MarkerType() const;
21
20 bool IsEmpty() const final; 22 bool IsEmpty() const final;
21 23
22 void Add(DocumentMarker*) final; 24 void Add(DocumentMarker*) final;
23 void Clear() final; 25 void Clear() final;
24 26
25 const HeapVector<Member<RenderedDocumentMarker>>& GetMarkers() const final; 27 const HeapVector<Member<RenderedDocumentMarker>>& GetMarkers() const final;
26 28
27 bool MoveMarkers(int length, DocumentMarkerList* dst_list) final; 29 bool MoveMarkers(int length, DocumentMarkerList* dst_list) final;
28 bool RemoveMarkers(unsigned start_offset, int length) final; 30 bool RemoveMarkers(unsigned start_offset, int length) final;
29 bool RemoveMarkersUnderWords(const String& node_text, 31 bool RemoveMarkersUnderWords(const String& node_text,
30 const Vector<String>& words); 32 const Vector<String>& words);
31 bool ShiftMarkers(unsigned offset, 33 bool ShiftMarkers(unsigned offset,
32 unsigned old_length, 34 unsigned old_length,
33 unsigned new_length) final; 35 unsigned new_length) final;
34 36
35 DECLARE_VIRTUAL_TRACE(); 37 DECLARE_VIRTUAL_TRACE();
36 38
37 private: 39 private:
40 DocumentMarker::MarkerType marker_type_;
38 HeapVector<Member<RenderedDocumentMarker>> markers_; 41 HeapVector<Member<RenderedDocumentMarker>> markers_;
39 42
40 DISALLOW_COPY_AND_ASSIGN(SpellCheckMarkerListImpl); 43 DISALLOW_COPY_AND_ASSIGN(SpellCheckMarkerListImpl);
41 }; 44 };
42 45
43 } // namespace blink 46 } // namespace blink
44 47
45 #endif // SpellCheckMarkerListImpl_h 48 #endif // SpellCheckMarkerListImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698