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

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

Issue 220833002: Oilpan build fix for AnimatableLengthPoint3D. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | « no previous file | Source/core/animation/AnimatableLengthPoint3D.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimatableLengthPoint3D.h
diff --git a/Source/core/animation/AnimatableLengthPoint3D.h b/Source/core/animation/AnimatableLengthPoint3D.h
index f7651d4ec4a522ace5b9a68b0ebde1663d1f6c68..631b06a4348aad245183d7449ecfb87a9e94b2bd 100644
--- a/Source/core/animation/AnimatableLengthPoint3D.h
+++ b/Source/core/animation/AnimatableLengthPoint3D.h
@@ -38,9 +38,9 @@ namespace WebCore {
class AnimatableLengthPoint3D FINAL : public AnimatableValue {
public:
virtual ~AnimatableLengthPoint3D() { }
- static PassRefPtr<AnimatableLengthPoint3D> create(PassRefPtr<AnimatableValue> x, PassRefPtr<AnimatableValue> y, PassRefPtr<AnimatableValue> z)
+ static PassRefPtrWillBeRawPtr<AnimatableLengthPoint3D> create(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z)
{
- return adoptRef(new AnimatableLengthPoint3D(x, y, z));
+ return adoptRefWillBeNoop(new AnimatableLengthPoint3D(x, y, z));
}
const AnimatableValue* x() const { return m_x.get(); }
const AnimatableValue* y() const { return m_y.get(); }
@@ -49,11 +49,11 @@ public:
virtual void trace(Visitor*) OVERRIDE;
protected:
- virtual PassRefPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
- virtual PassRefPtr<AnimatableValue> addWith(const AnimatableValue*) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<AnimatableValue> addWith(const AnimatableValue*) const OVERRIDE;
private:
- AnimatableLengthPoint3D(PassRefPtr<AnimatableValue> x, PassRefPtr<AnimatableValue> y, PassRefPtr<AnimatableValue> z)
+ AnimatableLengthPoint3D(PassRefPtrWillBeRawPtr<AnimatableValue> x, PassRefPtrWillBeRawPtr<AnimatableValue> y, PassRefPtrWillBeRawPtr<AnimatableValue> z)
: m_x(x)
, m_y(y)
, m_z(z)
« no previous file with comments | « no previous file | Source/core/animation/AnimatableLengthPoint3D.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698