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

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

Issue 1207673002: Oilpan: fix build after r197705. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/PrimitiveInterpolation.h
diff --git a/Source/core/animation/PrimitiveInterpolation.h b/Source/core/animation/PrimitiveInterpolation.h
index b17e1af86fc70571048a22e0b89fcea72f3ce251..3f4d86f125ae6abde9d67b9ef18b74208594688f 100644
--- a/Source/core/animation/PrimitiveInterpolation.h
+++ b/Source/core/animation/PrimitiveInterpolation.h
@@ -61,9 +61,9 @@ private:
, m_end(end)
, m_nonInterpolableValue(nonInterpolableValue)
{ }
- OwnPtrWillBeRawPtr<InterpolableValue> m_start;
- OwnPtrWillBeRawPtr<InterpolableValue> m_end;
- RefPtrWillBeRawPtr<NonInterpolableValue> m_nonInterpolableValue;
+ OwnPtrWillBeMember<InterpolableValue> m_start;
+ OwnPtrWillBeMember<InterpolableValue> m_end;
+ RefPtrWillBeMember<NonInterpolableValue> m_nonInterpolableValue;
};
// Represents a pair of incompatible keyframes that fall back to 50% flip behaviour eg. "auto" and "0px".
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698