| 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 31fa90a872e832f5b4a043b0cec5d41d2c99694c..57f88910632b86180a2c1de1c047eeb6d179fef2 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| @@ -36,9 +36,7 @@ class DocumentMarkerDetails;
|
|
|
| // A range of a node within a document that is "marked", such as the range of a
|
| // misspelled word. It optionally includes a description that could be displayed
|
| -// in the user interface. It also optionally includes a flag specifying whether
|
| -// the match is active, which is ignored for all types other than type
|
| -// TextMatch.
|
| +// in the user interface.
|
| class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
|
| public:
|
| enum MarkerTypeIndex {
|
| @@ -149,13 +147,11 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
|
| unsigned EndOffset() const { return end_offset_; }
|
|
|
| const String& Description() const;
|
| - bool IsActiveMatch() const;
|
| Color UnderlineColor() const;
|
| bool Thick() const;
|
| Color BackgroundColor() const;
|
| DocumentMarkerDetails* Details() const;
|
|
|
| - void SetIsActiveMatch(bool);
|
| void ClearDetails() { details_.Clear(); }
|
|
|
| struct MarkerOffsets {
|
|
|