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

Unified Diff: Source/core/animation/ImageStyleInterpolation.h

Issue 803863005: Oilpan: fix build after r188198. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | Source/core/animation/ImageStyleInterpolation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/ImageStyleInterpolation.h
diff --git a/Source/core/animation/ImageStyleInterpolation.h b/Source/core/animation/ImageStyleInterpolation.h
index 30d5400e9457ad474de401971838e9be5e208ba2..35395a279cdb293d367f425edc587d34b2c2c134 100644
--- a/Source/core/animation/ImageStyleInterpolation.h
+++ b/Source/core/animation/ImageStyleInterpolation.h
@@ -16,6 +16,8 @@ public:
return adoptRefWillBeNoop(new ImageStyleInterpolation(&start, &end, id));
}
+ virtual void trace(Visitor*) override;
+
static bool canCreateFrom(const CSSValue&);
virtual void apply(StyleResolverState&) const override;
@@ -27,8 +29,8 @@ private:
{
}
- PassRefPtrWillBeRawPtr<CSSValue> m_initialImage;
- PassRefPtrWillBeRawPtr<CSSValue> m_finalImage;
+ RefPtrWillBeMember<CSSValue> m_initialImage;
+ RefPtrWillBeMember<CSSValue> m_finalImage;
};
}
« no previous file with comments | « no previous file | Source/core/animation/ImageStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698