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

Unified Diff: third_party/WebKit/Source/core/animation/StringKeyframe.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/StringKeyframe.h
diff --git a/third_party/WebKit/Source/core/animation/StringKeyframe.h b/third_party/WebKit/Source/core/animation/StringKeyframe.h
index c7568dddcde40e36f4d0c1d560e163973bb60c01..7e388f5f06e9d55109c97bbb4bf0429fd721dc8c 100644
--- a/third_party/WebKit/Source/core/animation/StringKeyframe.h
+++ b/third_party/WebKit/Source/core/animation/StringKeyframe.h
@@ -23,7 +23,7 @@ public:
}
void setCSSPropertyValue(CSSPropertyID, const String& value, Element*, StyleSheetContents*);
- void setCSSPropertyValue(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>);
+ void setCSSPropertyValue(CSSPropertyID, RawPtr<CSSValue>);
void setPresentationAttributeValue(CSSPropertyID, const String& value, Element*, StyleSheetContents*);
void setSVGAttributeValue(const QualifiedName&, const String& value);
@@ -79,7 +79,7 @@ public:
void populateAnimatableValueCaches(CSSPropertyID, Keyframe::PropertySpecificKeyframe&, Element*, CSSValue& fromCSSValue, CSSValue& toCSSValue) const;
- RefPtrWillBePersistent<CSSValue> m_value;
+ Persistent<CSSValue> m_value;
mutable RefPtr<AnimatableValue> m_animatableValueCache;
};
@@ -124,8 +124,8 @@ private:
bool isStringKeyframe() const override { return true; }
- RefPtrWillBePersistent<MutableStylePropertySet> m_cssPropertyMap;
- RefPtrWillBePersistent<MutableStylePropertySet> m_presentationAttributeMap;
+ Persistent<MutableStylePropertySet> m_cssPropertyMap;
+ Persistent<MutableStylePropertySet> m_presentationAttributeMap;
HashMap<const QualifiedName*, String> m_svgAttributeMap;
};

Powered by Google App Engine
This is Rietveld 408576698