summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/editing/markers/text_match_marker.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/editing/markers/text_match_marker.h')
-rw-r--r--chromium/third_party/blink/renderer/core/editing/markers/text_match_marker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/editing/markers/text_match_marker.h b/chromium/third_party/blink/renderer/core/editing/markers/text_match_marker.h
index 519f9953b40..0577ab9ef47 100644
--- a/chromium/third_party/blink/renderer/core/editing/markers/text_match_marker.h
+++ b/chromium/third_party/blink/renderer/core/editing/markers/text_match_marker.h
@@ -46,6 +46,8 @@ class CORE_EXPORT TextMatchMarker final : public TextMarkerBase {
enum class MatchStatus { kInactive, kActive };
TextMatchMarker(unsigned start_offset, unsigned end_offset, MatchStatus);
+ TextMatchMarker(const TextMatchMarker&) = delete;
+ TextMatchMarker& operator=(const TextMatchMarker&) = delete;
// DocumentMarker implementations
MarkerType GetType() const final;
@@ -69,8 +71,6 @@ class CORE_EXPORT TextMatchMarker final : public TextMarkerBase {
MatchStatus match_status_;
LayoutStatus layout_status_ = LayoutStatus::kInvalid;
PhysicalRect rect_;
-
- DISALLOW_COPY_AND_ASSIGN(TextMatchMarker);
};
template <>