summaryrefslogtreecommitdiffstats
path: root/chromium/cc/animation/keyframe_effect.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-24 11:40:17 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-05-24 12:42:11 +0000
commit5d87695f37678f96492b258bbab36486c59866b4 (patch)
treebe9783bbaf04fb930c4d74ca9c00b5e7954c8bc6 /chromium/cc/animation/keyframe_effect.h
parent6c11fb357ec39bf087b8b632e2b1e375aef1b38b (diff)
BASELINE: Update Chromium to 75.0.3770.56
Change-Id: I86d2007fd27a45d5797eee06f4c9369b8b50ac4f Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/cc/animation/keyframe_effect.h')
-rw-r--r--chromium/cc/animation/keyframe_effect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/cc/animation/keyframe_effect.h b/chromium/cc/animation/keyframe_effect.h
index c41fef5e79f..500f0bd5352 100644
--- a/chromium/cc/animation/keyframe_effect.h
+++ b/chromium/cc/animation/keyframe_effect.h
@@ -5,7 +5,6 @@
#ifndef CC_ANIMATION_KEYFRAME_EFFECT_H_
#define CC_ANIMATION_KEYFRAME_EFFECT_H_
-#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/time/time.h"
#include "cc/animation/animation_events.h"
@@ -41,8 +40,11 @@ typedef size_t KeyframeEffectId;
class CC_ANIMATION_EXPORT KeyframeEffect {
public:
explicit KeyframeEffect(KeyframeEffectId id);
+ KeyframeEffect(const KeyframeEffect&) = delete;
virtual ~KeyframeEffect();
+ KeyframeEffect& operator=(const KeyframeEffect&) = delete;
+
static std::unique_ptr<KeyframeEffect> Create(KeyframeEffectId id);
std::unique_ptr<KeyframeEffect> CreateImplInstance() const;
@@ -202,8 +204,6 @@ class CC_ANIMATION_EXPORT KeyframeEffect {
base::TimeTicks last_tick_time_;
bool needs_push_properties_;
-
- DISALLOW_COPY_AND_ASSIGN(KeyframeEffect);
};
} // namespace cc