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

Unified Diff: Source/core/css/resolver/StyleResolverState.cpp

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/css/resolver/StyleResolverState.cpp
diff --git a/Source/core/css/resolver/StyleResolverState.cpp b/Source/core/css/resolver/StyleResolverState.cpp
index d883d7cf5ad09cfa353b0324eff7b2f3fb371b5b..5a5f2cc3fc1a1db3b5ff5135bfc4951ab2bf1b15 100644
--- a/Source/core/css/resolver/StyleResolverState.cpp
+++ b/Source/core/css/resolver/StyleResolverState.cpp
@@ -58,14 +58,14 @@ StyleResolverState::~StyleResolverState()
{
}
-void StyleResolverState::setAnimationUpdate(PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> update)
+void StyleResolverState::setAnimationUpdate(CSSAnimationUpdate* update)
{
m_animationUpdate = update;
}
-PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> StyleResolverState::takeAnimationUpdate()
+CSSAnimationUpdate* StyleResolverState::takeAnimationUpdate()
{
- return m_animationUpdate.release();
+ return m_animationUpdate;
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698