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

Unified Diff: third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h b/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
index ecfc2a6897110549c883bfbdae6641aea97e058a..f460156c59f949b023ecd13a4e876e9e843a343c 100644
--- a/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
+++ b/third_party/WebKit/Source/core/animation/DoubleStyleInterpolation.h
@@ -27,7 +27,7 @@ public:
void apply(StyleResolverState&) const override;
static PassOwnPtr<InterpolableValue> toInterpolableValue(const CSSValue&, CSSPropertyID = CSSPropertyInvalid);
- static PassRefPtrWillBeRawPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, InterpolationRange);
+ static RawPtr<CSSValue> fromInterpolableValue(const InterpolableValue&, InterpolationRange);
private:
DoubleStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id, bool isNumber, InterpolationRange clamp, bool flag)
@@ -40,8 +40,8 @@ private:
static PassOwnPtr<InterpolableValue> doubleToInterpolableValue(const CSSValue&);
static PassOwnPtr<InterpolableValue> motionRotationToInterpolableValue(const CSSValue&);
- static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToDouble(const InterpolableValue*, bool, InterpolationRange);
- static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToMotionRotation(InterpolableValue*, bool);
+ static RawPtr<CSSValue> interpolableValueToDouble(const InterpolableValue*, bool, InterpolationRange);
+ static RawPtr<CSSValue> interpolableValueToMotionRotation(InterpolableValue*, bool);
bool m_isNumber;
InterpolationRange m_clamp;

Powered by Google App Engine
This is Rietveld 408576698