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

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

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/InertEffect.h ('k') | Source/core/animation/InterpolationEffect.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/InertEffect.cpp
diff --git a/Source/core/animation/InertEffect.cpp b/Source/core/animation/InertEffect.cpp
index 7e5deb892795a42a25b9766d816ffc5a3df33266..a4cc3b483f4f697c930d227802ae8542189d782e 100644
--- a/Source/core/animation/InertEffect.cpp
+++ b/Source/core/animation/InertEffect.cpp
@@ -35,12 +35,12 @@
namespace blink {
-PassRefPtrWillBeRawPtr<InertEffect> InertEffect::create(PassRefPtrWillBeRawPtr<EffectModel> effect, const Timing& timing, bool paused, double inheritedTime)
+InertEffect* InertEffect::create(EffectModel* effect, const Timing& timing, bool paused, double inheritedTime)
{
- return adoptRefWillBeNoop(new InertEffect(effect, timing, paused, inheritedTime));
+ return new InertEffect(effect, timing, paused, inheritedTime);
}
-InertEffect::InertEffect(PassRefPtrWillBeRawPtr<EffectModel> model, const Timing& timing, bool paused, double inheritedTime)
+InertEffect::InertEffect(EffectModel* model, const Timing& timing, bool paused, double inheritedTime)
: AnimationEffect(timing)
, m_model(model)
, m_paused(paused)
« no previous file with comments | « Source/core/animation/InertEffect.h ('k') | Source/core/animation/InterpolationEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698