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

Unified Diff: Source/core/animation/animatable/AnimatableLength.h

Issue 1276183004: Oilpan: Unship oilpan from temporary animation objects (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
Index: Source/core/animation/animatable/AnimatableLength.h
diff --git a/Source/core/animation/animatable/AnimatableLength.h b/Source/core/animation/animatable/AnimatableLength.h
index 36b9c0347fab6045cb4dd23a483ed42c3300e9f0..aa0b51aee20353fde8316f305bb4c7260fd6ab35 100644
--- a/Source/core/animation/animatable/AnimatableLength.h
+++ b/Source/core/animation/animatable/AnimatableLength.h
@@ -39,9 +39,9 @@ namespace blink {
class CORE_EXPORT AnimatableLength final : public AnimatableValue {
public:
- static PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, float zoom)
+ static PassRefPtr<AnimatableLength> create(const Length& length, float zoom)
{
- return adoptRefWillBeNoop(new AnimatableLength(length, zoom));
+ return adoptRef(new AnimatableLength(length, zoom));
}
Length length(float zoom, ValueRange) const;
@@ -50,15 +50,13 @@ public:
return m_hasPixels == other->m_hasPixels && m_hasPercent == other->m_hasPercent;
}
- DEFINE_INLINE_VIRTUAL_TRACE() { AnimatableValue::trace(visitor); }
-
protected:
- PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
+ PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
private:
- static PassRefPtrWillBeRawPtr<AnimatableLength> create(double pixels, double percent, bool hasPixels, bool hasPercent)
+ static PassRefPtr<AnimatableLength> create(double pixels, double percent, bool hasPixels, bool hasPercent)
{
- return adoptRefWillBeNoop(new AnimatableLength(pixels, percent, hasPixels, hasPercent));
+ return adoptRef(new AnimatableLength(pixels, percent, hasPixels, hasPercent));
}
AnimatableLength(const Length&, float zoom);
AnimatableLength(double pixels, double percent, bool hasPixels, bool hasPercent)

Powered by Google App Engine
This is Rietveld 408576698