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

Unified Diff: Source/core/css/CSSKeyframeRule.h

Issue 273843003: [Oilpan]: Make StylePropertySet fully garbage collected. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review feedback Created 6 years, 6 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/css/CSSCalculationValueTest.cpp ('k') | Source/core/css/CSSKeyframeRule.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSKeyframeRule.h
diff --git a/Source/core/css/CSSKeyframeRule.h b/Source/core/css/CSSKeyframeRule.h
index 48f1bfaf0a572d497b396d331974a0589740c7e6..cc70186bda85b67f624d2c2417e7244ba4dcf5a9 100644
--- a/Source/core/css/CSSKeyframeRule.h
+++ b/Source/core/css/CSSKeyframeRule.h
@@ -57,18 +57,18 @@ public:
const StylePropertySet& properties() const { return *m_properties; }
MutableStylePropertySet& mutableProperties();
- void setProperties(PassRefPtr<StylePropertySet>);
+ void setProperties(PassRefPtrWillBeRawPtr<StylePropertySet>);
String cssText() const;
- void trace(Visitor*) { }
+ void trace(Visitor*);
static PassOwnPtr<Vector<double> > createKeyList(CSSParserValueList*);
private:
StyleKeyframe();
- RefPtr<StylePropertySet> m_properties;
+ RefPtrWillBeMember<StylePropertySet> m_properties;
// These are both calculated lazily. Either one can be set, which invalidates the other.
mutable String m_keyText;
mutable OwnPtr<Vector<double> > m_keys;
« no previous file with comments | « Source/core/css/CSSCalculationValueTest.cpp ('k') | Source/core/css/CSSKeyframeRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698