| 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 6d7629028e2bc54577b88def849adb2a6a2ac36b..31fa90a872e832f5b4a043b0cec5d41d2c99694c 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| @@ -176,7 +176,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_;
|
| @@ -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() {}
|
|
|