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

Unified Diff: third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.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, 10 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/LengthBoxStyleInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.h b/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.h
index 73ca39f75c0f4d94fe75f886631f4c7be3d08bd8..dc401b9031dfee25c31c36926418ace103e29cba 100644
--- a/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.h
+++ b/third_party/WebKit/Source/core/animation/LengthBoxStyleInterpolation.h
@@ -27,10 +27,10 @@ private:
{ }
static PassOwnPtr<InterpolableValue> lengthBoxtoInterpolableValue(const CSSValue&, const CSSValue&, bool);
- static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLengthBox(InterpolableValue*, const CSSValue&, const CSSValue&);
+ static RawPtr<CSSValue> interpolableValueToLengthBox(InterpolableValue*, const CSSValue&, const CSSValue&);
- RefPtrWillBePersistent<CSSValue> m_startCSSValue;
- RefPtrWillBePersistent<CSSValue> m_endCSSValue;
+ Persistent<CSSValue> m_startCSSValue;
+ Persistent<CSSValue> m_endCSSValue;
friend class AnimationLengthBoxStyleInterpolationTest;
};

Powered by Google App Engine
This is Rietveld 408576698