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

Unified Diff: third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp

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/CSSValueInterpolationType.cpp
diff --git a/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
index 3337712639b225a8c90d9fcf763c148b86f9d616..e3076e8445a6628cdfd2cdf2a7b3a5c49027fc1f 100644
--- a/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
+++ b/third_party/WebKit/Source/core/animation/CSSValueInterpolationType.cpp
@@ -14,7 +14,7 @@ class CSSValueNonInterpolableValue : public NonInterpolableValue {
public:
~CSSValueNonInterpolableValue() final { }
- static PassRefPtr<CSSValueNonInterpolableValue> create(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
+ static PassRefPtr<CSSValueNonInterpolableValue> create(RawPtr<CSSValue> cssValue)
{
return adoptRef(new CSSValueNonInterpolableValue(cssValue));
}
@@ -24,13 +24,13 @@ public:
DECLARE_NON_INTERPOLABLE_VALUE_TYPE();
private:
- CSSValueNonInterpolableValue(PassRefPtrWillBeRawPtr<CSSValue> cssValue)
+ CSSValueNonInterpolableValue(RawPtr<CSSValue> cssValue)
: m_cssValue(cssValue)
{
ASSERT(m_cssValue);
}
- RefPtrWillBePersistent<CSSValue> m_cssValue;
+ Persistent<CSSValue> m_cssValue;
};
DEFINE_NON_INTERPOLABLE_VALUE_TYPE(CSSValueNonInterpolableValue);

Powered by Google App Engine
This is Rietveld 408576698