summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/custom/custom_element_definition_builder.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/custom/custom_element_definition_builder.h')
-rw-r--r--chromium/third_party/blink/renderer/core/html/custom/custom_element_definition_builder.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/custom/custom_element_definition_builder.h b/chromium/third_party/blink/renderer/core/html/custom/custom_element_definition_builder.h
index 6a61667fac6..dacfce199b5 100644
--- a/chromium/third_party/blink/renderer/core/html/custom/custom_element_definition_builder.h
+++ b/chromium/third_party/blink/renderer/core/html/custom/custom_element_definition_builder.h
@@ -5,7 +5,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_CUSTOM_CUSTOM_ELEMENT_DEFINITION_BUILDER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_CUSTOM_CUSTOM_ELEMENT_DEFINITION_BUILDER_H_
-#include "base/macros.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/css/css_style_sheet.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_definition.h"
@@ -23,6 +22,11 @@ class CORE_EXPORT CustomElementDefinitionBuilder {
STACK_ALLOCATED();
public:
+ CustomElementDefinitionBuilder(const CustomElementDefinitionBuilder&) =
+ delete;
+ CustomElementDefinitionBuilder& operator=(
+ const CustomElementDefinitionBuilder&) = delete;
+
// This API necessarily sounds JavaScript specific; this implements
// some steps of the CustomElementRegistry.define process, which
// are defined in terms of JavaScript.
@@ -45,8 +49,6 @@ class CORE_EXPORT CustomElementDefinitionBuilder {
protected:
CustomElementDefinitionBuilder() = default;
-
- DISALLOW_COPY_AND_ASSIGN(CustomElementDefinitionBuilder);
};
} // namespace blink