summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/forms/date_time_numeric_field_element.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/forms/date_time_numeric_field_element.h')
-rw-r--r--chromium/third_party/blink/renderer/core/html/forms/date_time_numeric_field_element.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/forms/date_time_numeric_field_element.h b/chromium/third_party/blink/renderer/core/html/forms/date_time_numeric_field_element.h
index b537726d798..4249f3694c3 100644
--- a/chromium/third_party/blink/renderer/core/html/forms/date_time_numeric_field_element.h
+++ b/chromium/third_party/blink/renderer/core/html/forms/date_time_numeric_field_element.h
@@ -26,7 +26,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_DATE_TIME_NUMERIC_FIELD_ELEMENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_DATE_TIME_NUMERIC_FIELD_ELEMENT_H_
-#include "base/macros.h"
#include "third_party/blink/renderer/core/html/forms/date_time_field_element.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
@@ -61,6 +60,10 @@ class DateTimeNumericFieldElement : public DateTimeFieldElement {
int maximum;
};
+ DateTimeNumericFieldElement(const DateTimeNumericFieldElement&) = delete;
+ DateTimeNumericFieldElement& operator=(const DateTimeNumericFieldElement&) =
+ delete;
+
protected:
DateTimeNumericFieldElement(Document&,
FieldOwner&,
@@ -116,8 +119,6 @@ class DateTimeNumericFieldElement : public DateTimeFieldElement {
int value_;
bool has_value_;
mutable StringBuilder type_ahead_buffer_;
-
- DISALLOW_COPY_AND_ASSIGN(DateTimeNumericFieldElement);
};
} // namespace blink