summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-29 10:46:47 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-11-02 12:02:10 +0000
commit99677208ff3b216fdfec551fbe548da5520cd6fb (patch)
tree476a4865c10320249360e859d8fdd3e01833b03a /chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h
parentc30a6232df03e1efbd9f3b226777b07e087a1122 (diff)
downloadqtwebengine-chromium-99677208ff3b216fdfec551fbe548da5520cd6fb.tar.gz
BASELINE: Update Chromium to 86.0.4240.124
Change-Id: Ide0ff151e94cd665ae6521a446995d34a9d1d644 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h')
-rw-r--r--chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h b/chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h
index eb0cd77a249..07694124252 100644
--- a/chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h
+++ b/chromium/third_party/blink/renderer/core/css/cssom/computed_style_property_map.h
@@ -5,7 +5,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSSOM_COMPUTED_STYLE_PROPERTY_MAP_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSSOM_COMPUTED_STYLE_PROPERTY_MAP_H_
-#include "base/macros.h"
#include "third_party/blink/renderer/core/css/css_computed_style_declaration.h"
#include "third_party/blink/renderer/core/css/css_selector.h"
#include "third_party/blink/renderer/core/css/cssom/style_property_map_read_only_main_thread.h"
@@ -28,6 +27,8 @@ class CORE_EXPORT ComputedStylePropertyMap
ComputedStylePropertyMap(Node* node, const String& pseudo_element = String())
: pseudo_id_(CSSSelector::ParsePseudoId(pseudo_element, node)),
node_(node) {}
+ ComputedStylePropertyMap(const ComputedStylePropertyMap&) = delete;
+ ComputedStylePropertyMap& operator=(const ComputedStylePropertyMap&) = delete;
void Trace(Visitor* visitor) const override {
visitor->Trace(node_);
@@ -58,7 +59,6 @@ class CORE_EXPORT ComputedStylePropertyMap
Node* StyledNode() const;
const ComputedStyle* UpdateStyle() const;
- DISALLOW_COPY_AND_ASSIGN(ComputedStylePropertyMap);
};
} // namespace blink