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

Unified Diff: trunk/Source/core/css/resolver/StyleResolverState.h

Issue 199663007: Revert 169949 "Oilpan: Move CSSAnimations and CSSAnimationUpdate..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 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: trunk/Source/core/css/resolver/StyleResolverState.h
===================================================================
--- trunk/Source/core/css/resolver/StyleResolverState.h (revision 170003)
+++ trunk/Source/core/css/resolver/StyleResolverState.h (working copy)
@@ -67,9 +67,9 @@
const CSSToLengthConversionData& cssToLengthConversionData() const { return m_cssToLengthConversionData; }
- void setAnimationUpdate(PassOwnPtrWillBeRawPtr<CSSAnimationUpdate>);
+ void setAnimationUpdate(PassOwnPtr<CSSAnimationUpdate>);
const CSSAnimationUpdate* animationUpdate() { return m_animationUpdate.get(); }
- PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> takeAnimationUpdate();
+ PassOwnPtr<CSSAnimationUpdate> takeAnimationUpdate();
void setParentStyle(PassRefPtr<RenderStyle> parentStyle) { m_parentStyle = parentStyle; }
const RenderStyle* parentStyle() const { return m_parentStyle.get(); }
@@ -153,7 +153,7 @@
// so we keep it separate from m_elementContext.
RefPtr<RenderStyle> m_parentStyle;
- OwnPtrWillBeMember<CSSAnimationUpdate> m_animationUpdate;
+ OwnPtr<CSSAnimationUpdate> m_animationUpdate;
bool m_applyPropertyToRegularStyle;
bool m_applyPropertyToVisitedLinkStyle;
« no previous file with comments | « trunk/Source/core/animation/css/CSSAnimations.cpp ('k') | trunk/Source/core/css/resolver/StyleResolverState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698