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

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

Issue 1337383002: Oilpan: fix build after r202176. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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/InterpolationValue.h
diff --git a/Source/core/animation/InterpolationValue.h b/Source/core/animation/InterpolationValue.h
index e37191f026a9801eb6cc720219626836aca2e127..e5ddda1167370470b34fa4550c7dabc9aa086610 100644
--- a/Source/core/animation/InterpolationValue.h
+++ b/Source/core/animation/InterpolationValue.h
@@ -16,13 +16,13 @@ class InterpolationType;
struct InterpolationComponentValue {
ALLOW_ONLY_INLINE_ALLOCATION();
- InterpolationComponentValue(PassOwnPtr<InterpolableValue> interpolableValue = nullptr, PassRefPtr<NonInterpolableValue> nonInterpolableValue = nullptr)
+ InterpolationComponentValue(PassOwnPtr<InterpolableValue> interpolableValue = nullptr, PassRefPtrWillBeRawPtr<NonInterpolableValue> nonInterpolableValue = nullptr)
: interpolableValue(interpolableValue)
, nonInterpolableValue(nonInterpolableValue)
{ }
OwnPtr<InterpolableValue> interpolableValue;
- RefPtr<NonInterpolableValue> nonInterpolableValue;
+ RefPtrWillBePersistent<NonInterpolableValue> nonInterpolableValue;
};
class InterpolationValue {
« 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