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

Unified Diff: Source/core/animation/InertEffect.h

Issue 1318543009: Oilpan: Partially ship Oilpan for core/animations (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | « Source/core/animation/ElementAnimations.cpp ('k') | Source/core/animation/InertEffect.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/InertEffect.h
diff --git a/Source/core/animation/InertEffect.h b/Source/core/animation/InertEffect.h
index e80215abd8438891f5e48859ed33e1358c260e18..9fe08394ad56761ca35aac462267c08d9be12db1 100644
--- a/Source/core/animation/InertEffect.h
+++ b/Source/core/animation/InertEffect.h
@@ -40,7 +40,7 @@ namespace blink {
class CORE_EXPORT InertEffect final : public AnimationEffect {
public:
- static PassRefPtrWillBeRawPtr<InertEffect> create(PassRefPtrWillBeRawPtr<EffectModel>, const Timing&, bool paused, double inheritedTime);
+ static InertEffect* create(EffectModel*, const Timing&, bool paused, double inheritedTime);
void sample(OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation>>>&);
EffectModel* model() const { return m_model.get(); }
bool paused() const { return m_paused; }
@@ -52,8 +52,8 @@ protected:
double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const override;
private:
- InertEffect(PassRefPtrWillBeRawPtr<EffectModel>, const Timing&, bool paused, double inheritedTime);
- RefPtrWillBeMember<EffectModel> m_model;
+ InertEffect(EffectModel*, const Timing&, bool paused, double inheritedTime);
+ Member<EffectModel> m_model;
bool m_paused;
double m_inheritedTime;
};
« no previous file with comments | « Source/core/animation/ElementAnimations.cpp ('k') | Source/core/animation/InertEffect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698