| Index: Source/core/dom/DocumentMarker.cpp
|
| diff --git a/Source/core/dom/DocumentMarker.cpp b/Source/core/dom/DocumentMarker.cpp
|
| index bb15c5cef912bc43d634228f31faf93a9648314e..b832cb6f9cd3e597f49d6fc469e43626ae6a805d 100644
|
| --- a/Source/core/dom/DocumentMarker.cpp
|
| +++ b/Source/core/dom/DocumentMarker.cpp
|
| @@ -42,7 +42,7 @@ public:
|
| static PassRefPtrWillBeRawPtr<DocumentMarkerDescription> create(const String&);
|
|
|
| const String& description() const { return m_description; }
|
| - virtual bool isDescription() const override { return true; }
|
| + bool isDescription() const override { return true; }
|
|
|
| private:
|
| explicit DocumentMarkerDescription(const String& description)
|
| @@ -71,7 +71,7 @@ public:
|
| static PassRefPtrWillBeRawPtr<DocumentMarkerTextMatch> instanceFor(bool);
|
|
|
| bool activeMatch() const { return m_match; }
|
| - virtual bool isTextMatch() const override { return true; }
|
| + bool isTextMatch() const override { return true; }
|
|
|
| private:
|
| explicit DocumentMarkerTextMatch(bool match)
|
|
|