| Index: third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| diff --git a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| index e00ffb1da9d3a77b205f6e3ea9fff2d2f1a0b3f3..06c250adae7766a7406a3a5dc9ad50b5f22f06ae 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| @@ -134,11 +134,13 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
|
| SpellCheckClientMarkers() : MarkerTypes(Spelling | Grammar) {}
|
| };
|
|
|
| + enum class MatchStatus { kInactive, kActive };
|
| +
|
| DocumentMarker(MarkerType,
|
| unsigned startOffset,
|
| unsigned endOffset,
|
| const String& description);
|
| - DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
|
| + DocumentMarker(unsigned startOffset, unsigned endOffset, MatchStatus);
|
| DocumentMarker(unsigned startOffset,
|
| unsigned endOffset,
|
| Color underlineColor,
|
|
|