Chromium Code Reviews| 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 2a1dd7d1fbfcf2cbb079740ce22c2f5e14024b02..401bec6f8dea35c9e839689901e625c21d52cc67 100644 |
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h |
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h |
| @@ -174,7 +174,7 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> { |
| DECLARE_TRACE(); |
| protected: |
| - DocumentMarker(unsigned start_offset, unsigned end_offset, MatchStatus); |
| + DocumentMarker(MarkerType, unsigned start_offset, unsigned end_offset); |
| private: |
| MarkerType type_; |
|
yosin_UTC9
2017/05/31 07:06:54
nit: s/MarkerType/const MarkerType/
|
| @@ -197,7 +197,6 @@ class DocumentMarkerDetails |
| DocumentMarkerDetails() {} |
| virtual ~DocumentMarkerDetails(); |
| virtual bool IsDescription() const { return false; } |
| - virtual bool IsTextMatch() const { return false; } |
| virtual bool IsComposition() const { return false; } |
| DEFINE_INLINE_VIRTUAL_TRACE() {} |