summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/forms/date_time_symbolic_field_element.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/forms/date_time_symbolic_field_element.h')
-rw-r--r--chromium/third_party/blink/renderer/core/html/forms/date_time_symbolic_field_element.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/forms/date_time_symbolic_field_element.h b/chromium/third_party/blink/renderer/core/html/forms/date_time_symbolic_field_element.h
index 9c752d5cce4..55c7a3897f5 100644
--- a/chromium/third_party/blink/renderer/core/html/forms/date_time_symbolic_field_element.h
+++ b/chromium/third_party/blink/renderer/core/html/forms/date_time_symbolic_field_element.h
@@ -26,7 +26,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_DATE_TIME_SYMBOLIC_FIELD_ELEMENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_FORMS_DATE_TIME_SYMBOLIC_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/core/html/forms/type_ahead.h"
@@ -36,6 +35,11 @@ namespace blink {
// format, such as: AM/PM, and month.
class DateTimeSymbolicFieldElement : public DateTimeFieldElement,
public TypeAheadDataSource {
+ public:
+ DateTimeSymbolicFieldElement(const DateTimeSymbolicFieldElement&) = delete;
+ DateTimeSymbolicFieldElement& operator=(const DateTimeSymbolicFieldElement&) =
+ delete;
+
protected:
DateTimeSymbolicFieldElement(Document&,
FieldOwner&,
@@ -82,8 +86,6 @@ class DateTimeSymbolicFieldElement : public DateTimeFieldElement,
TypeAhead type_ahead_;
const int minimum_index_;
const int maximum_index_;
-
- DISALLOW_COPY_AND_ASSIGN(DateTimeSymbolicFieldElement);
};
} // namespace blink