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

Unified Diff: third_party/WebKit/Source/core/css/StyleRuleKeyframe.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/css/StyleRuleKeyframe.h
diff --git a/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h b/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h
index bb06045aa4f5c48462b5a3028922acbe0f435f74..40a37f84d7fdaff6a1475edb05df0af0237d0143 100644
--- a/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h
+++ b/third_party/WebKit/Source/core/css/StyleRuleKeyframe.h
@@ -13,11 +13,10 @@ class MutableStylePropertySet;
class StylePropertySet;
class StyleRuleKeyframe final : public StyleRuleBase {
- USING_FAST_MALLOC_WILL_BE_REMOVED(StyleRuleKeyframe);
public:
- static PassRefPtrWillBeRawPtr<StyleRuleKeyframe> create(PassOwnPtr<Vector<double>> keys, PassRefPtrWillBeRawPtr<StylePropertySet> properties)
+ static RawPtr<StyleRuleKeyframe> create(PassOwnPtr<Vector<double>> keys, RawPtr<StylePropertySet> properties)
{
- return adoptRefWillBeNoop(new StyleRuleKeyframe(keys, properties));
+ return new StyleRuleKeyframe(keys, properties);
}
// Exposed to JavaScript.
@@ -35,9 +34,9 @@ public:
DECLARE_TRACE_AFTER_DISPATCH();
private:
- StyleRuleKeyframe(PassOwnPtr<Vector<double>>, PassRefPtrWillBeRawPtr<StylePropertySet>);
+ StyleRuleKeyframe(PassOwnPtr<Vector<double>>, RawPtr<StylePropertySet>);
- RefPtrWillBeMember<StylePropertySet> m_properties;
+ Member<StylePropertySet> m_properties;
Vector<double> m_keys;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/StyleRuleImport.cpp ('k') | third_party/WebKit/Source/core/css/StyleRuleKeyframe.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698