summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/animation/underlying_value_owner.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/animation/underlying_value_owner.h')
-rw-r--r--chromium/third_party/blink/renderer/core/animation/underlying_value_owner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/animation/underlying_value_owner.h b/chromium/third_party/blink/renderer/core/animation/underlying_value_owner.h
index 95efc5d1992..1f6d277e017 100644
--- a/chromium/third_party/blink/renderer/core/animation/underlying_value_owner.h
+++ b/chromium/third_party/blink/renderer/core/animation/underlying_value_owner.h
@@ -7,7 +7,6 @@
#include <memory>
-#include "base/macros.h"
#include "third_party/blink/renderer/core/animation/typed_interpolation_value.h"
#include "third_party/blink/renderer/core/animation/underlying_value.h"
#include "third_party/blink/renderer/core/core_export.h"
@@ -25,6 +24,8 @@ class CORE_EXPORT UnderlyingValueOwner : public UnderlyingValue {
public:
UnderlyingValueOwner()
: type_(nullptr), value_owner_(nullptr), value_(nullptr) {}
+ UnderlyingValueOwner(const UnderlyingValueOwner&) = delete;
+ UnderlyingValueOwner& operator=(const UnderlyingValueOwner&) = delete;
operator bool() const {
DCHECK_EQ(static_cast<bool>(type_), static_cast<bool>(value_));
@@ -56,7 +57,6 @@ class CORE_EXPORT UnderlyingValueOwner : public UnderlyingValue {
const InterpolationType* type_;
InterpolationValue value_owner_;
const InterpolationValue* value_;
- DISALLOW_COPY_AND_ASSIGN(UnderlyingValueOwner);
};
} // namespace blink