| 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..2a1dd7d1fbfcf2cbb079740ce22c2f5e14024b02 100644
|
| --- a/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| +++ b/third_party/WebKit/Source/core/editing/markers/DocumentMarker.h
|
| @@ -142,8 +142,6 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
|
| bool thick,
|
| Color background_color);
|
|
|
| - DocumentMarker(const DocumentMarker&);
|
| -
|
| MarkerType GetType() const { return type_; }
|
| unsigned StartOffset() const { return start_offset_; }
|
| unsigned EndOffset() const { return end_offset_; }
|
| @@ -183,6 +181,8 @@ class CORE_EXPORT DocumentMarker : public GarbageCollected<DocumentMarker> {
|
| unsigned start_offset_;
|
| unsigned end_offset_;
|
| Member<DocumentMarkerDetails> details_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(DocumentMarker);
|
| };
|
|
|
| using DocumentMarkerVector = HeapVector<Member<DocumentMarker>>;
|
|
|