Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Unified Diff: sky/engine/core/animation/SampledEffect.h

Issue 1229273004: Remove Animations and Transitions. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/animation/PendingAnimations.cpp ('k') | sky/engine/core/animation/SampledEffect.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/animation/SampledEffect.h
diff --git a/sky/engine/core/animation/SampledEffect.h b/sky/engine/core/animation/SampledEffect.h
deleted file mode 100644
index e4ee7d5a52ccd4e511bf2b962be2b5b434218b99..0000000000000000000000000000000000000000
--- a/sky/engine/core/animation/SampledEffect.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef SKY_ENGINE_CORE_ANIMATION_SAMPLEDEFFECT_H_
-#define SKY_ENGINE_CORE_ANIMATION_SAMPLEDEFFECT_H_
-
-#include "sky/engine/core/animation/Animation.h"
-#include "sky/engine/core/animation/AnimationPlayer.h"
-#include "sky/engine/core/animation/Interpolation.h"
-#include "sky/engine/wtf/BitArray.h"
-#include "sky/engine/wtf/Vector.h"
-
-namespace blink {
-
-class SampledEffect {
-public:
- static PassOwnPtr<SampledEffect> create(Animation* animation, PassOwnPtr<Vector<RefPtr<Interpolation> > > interpolations)
- {
- return adoptPtr(new SampledEffect(animation, interpolations));
- }
-
- bool canChange() const;
- void clear();
-
- const Vector<RefPtr<Interpolation> >& interpolations() const { return *m_interpolations; }
- void setInterpolations(PassOwnPtr<Vector<RefPtr<Interpolation> > > interpolations) { m_interpolations = interpolations; }
-
- Animation* animation() const { return m_animation; }
- unsigned sequenceNumber() const { return m_sequenceNumber; }
- Animation::Priority priority() const { return m_priority; }
-
- void removeReplacedInterpolationsIfNeeded(const BitArray<numCSSProperties>&);
-
-private:
- SampledEffect(Animation*, PassOwnPtr<Vector<RefPtr<Interpolation> > >);
-
- RawPtr<Animation> m_animation;
-#if !ENABLE(OILPAN)
- RefPtr<AnimationPlayer> m_player;
-#endif
- OwnPtr<Vector<RefPtr<Interpolation> > > m_interpolations;
- const unsigned m_sequenceNumber;
- Animation::Priority m_priority;
-};
-
-} // namespace blink
-
-#endif // SKY_ENGINE_CORE_ANIMATION_SAMPLEDEFFECT_H_
« no previous file with comments | « sky/engine/core/animation/PendingAnimations.cpp ('k') | sky/engine/core/animation/SampledEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698