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

Unified Diff: Source/core/animation/css/CSSAnimatableValueFactory.h

Issue 1120003002: [Oilpan] Migrate most classes under core/animations to Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Resize expect size of Persistent Created 5 years, 7 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: Source/core/animation/css/CSSAnimatableValueFactory.h
diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.h b/Source/core/animation/css/CSSAnimatableValueFactory.h
index 441e5724312b7b6cf4fa3ca07a64fb88293b544e..e7da1e07cfea82e7e593803998802a701ff881c3 100644
--- a/Source/core/animation/css/CSSAnimatableValueFactory.h
+++ b/Source/core/animation/css/CSSAnimatableValueFactory.h
@@ -41,9 +41,9 @@ class ComputedStyle;
class CSSAnimatableValueFactory {
public:
- static PassRefPtrWillBeRawPtr<AnimatableValue> create(CSSPropertyID, const ComputedStyle&);
+ static AnimatableValue* create(CSSPropertyID, const ComputedStyle&);
private:
- static PassRefPtrWillBeRawPtr<AnimatableValue> createFromColor(CSSPropertyID, const ComputedStyle&);
+ static AnimatableValue* createFromColor(CSSPropertyID, const ComputedStyle&);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698