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

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

Issue 1305383006: Oilpan: Unship CSSValues and AnimatableValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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/VisibilityStyleInterpolation.h
diff --git a/Source/core/animation/VisibilityStyleInterpolation.h b/Source/core/animation/VisibilityStyleInterpolation.h
index 0801d5c91a1379b015be012c0c2199a23724c977..a46370b05446fdec005c548443d3a4f2a7d9393f 100644
--- a/Source/core/animation/VisibilityStyleInterpolation.h
+++ b/Source/core/animation/VisibilityStyleInterpolation.h
@@ -30,14 +30,14 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- VisibilityStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
+ VisibilityStyleInterpolation(PassOwnPtr<InterpolableValue> start, PassOwnPtr<InterpolableValue> end, CSSPropertyID id)
: StyleInterpolation(start, end, id)
, m_notVisible(CSSValueVisible)
{
}
- static PassOwnPtrWillBeRawPtr<InterpolableValue> visibilityToInterpolableValue(const CSSValue&);
- static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToVisibility(InterpolableValue*, CSSValueID);
+ static PassOwnPtr<InterpolableValue> visibilityToInterpolableValue(const CSSValue&);
+ static PassRefPtr<CSSValue> interpolableValueToVisibility(InterpolableValue*, CSSValueID);
CSSValueID m_notVisible;
« no previous file with comments | « Source/core/animation/TransformSVGInterpolation.cpp ('k') | Source/core/animation/VisibilityStyleInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698