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

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

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 | « Source/core/animation/AnimatableLengthPoint3D.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimatableLengthPoint3D.cpp
diff --git a/Source/core/animation/AnimatableLengthPoint3D.cpp b/Source/core/animation/AnimatableLengthPoint3D.cpp
index e46494c814332ee5b089b78e38af5ebd25ccd3de..2b8842a0769f49f0c3c69323be2554e79dd48f83 100644
--- a/Source/core/animation/AnimatableLengthPoint3D.cpp
+++ b/Source/core/animation/AnimatableLengthPoint3D.cpp
@@ -33,7 +33,7 @@
namespace WebCore {
-PassRefPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const AnimatableValue* value, double fraction) const
+PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const AnimatableValue* value, double fraction) const
{
const AnimatableLengthPoint3D* lengthPoint = toAnimatableLengthPoint3D(value);
return AnimatableLengthPoint3D::create(
@@ -42,7 +42,7 @@ PassRefPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const Animata
AnimatableValue::interpolate(this->z(), lengthPoint->z(), fraction));
}
-PassRefPtr<AnimatableValue> AnimatableLengthPoint3D::addWith(const AnimatableValue* value) const
+PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint3D::addWith(const AnimatableValue* value) const
{
const AnimatableLengthPoint3D* lengthPoint = toAnimatableLengthPoint3D(value);
return AnimatableLengthPoint3D::create(
« no previous file with comments | « Source/core/animation/AnimatableLengthPoint3D.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698