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

Side by Side Diff: Source/core/animation/animatable/AnimatableValueKeyframe.cpp

Issue 403333002: [oilpan]: Remove support for tracing off-heap hashmaps. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add GC_PLUGIN_IGNORE Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/animation/ActiveAnimations.cpp ('k') | Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/animation/animatable/AnimatableValueKeyframe.h" 6 #include "core/animation/animatable/AnimatableValueKeyframe.h"
7 7
8 #include "core/animation/LegacyStyleInterpolation.h" 8 #include "core/animation/LegacyStyleInterpolation.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 20 matching lines...) Expand all
31 return adoptRefWillBeNoop(new AnimatableValueKeyframe(*this)); 31 return adoptRefWillBeNoop(new AnimatableValueKeyframe(*this));
32 } 32 }
33 33
34 PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyfra me::createPropertySpecificKeyframe(CSSPropertyID property) const 34 PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> AnimatableValueKeyfra me::createPropertySpecificKeyframe(CSSPropertyID property) const
35 { 35 {
36 return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), easing(), p ropertyValue(property), composite())); 36 return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), easing(), p ropertyValue(property), composite()));
37 } 37 }
38 38
39 void AnimatableValueKeyframe::trace(Visitor* visitor) 39 void AnimatableValueKeyframe::trace(Visitor* visitor)
40 { 40 {
41 #if ENABLE(OILPAN)
41 visitor->trace(m_propertyValues); 42 visitor->trace(m_propertyValues);
43 #endif
42 Keyframe::trace(visitor); 44 Keyframe::trace(visitor);
43 } 45 }
44 46
45 AnimatableValueKeyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(doub le offset, PassRefPtr<TimingFunction> easing, const AnimatableValue* value, Anim ationEffect::CompositeOperation op) 47 AnimatableValueKeyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(doub le offset, PassRefPtr<TimingFunction> easing, const AnimatableValue* value, Anim ationEffect::CompositeOperation op)
46 : Keyframe::PropertySpecificKeyframe(offset, easing, op) 48 : Keyframe::PropertySpecificKeyframe(offset, easing, op)
47 , m_value(const_cast<AnimatableValue*>(value)) 49 , m_value(const_cast<AnimatableValue*>(value))
48 { } 50 { }
49 51
50 AnimatableValueKeyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(doub le offset, PassRefPtr<TimingFunction> easing, PassRefPtrWillBeRawPtr<AnimatableV alue> value) 52 AnimatableValueKeyframe::PropertySpecificKeyframe::PropertySpecificKeyframe(doub le offset, PassRefPtr<TimingFunction> easing, PassRefPtrWillBeRawPtr<AnimatableV alue> value)
51 : Keyframe::PropertySpecificKeyframe(offset, easing, AnimationEffect::Compos iteReplace) 53 : Keyframe::PropertySpecificKeyframe(offset, easing, AnimationEffect::Compos iteReplace)
(...skipping 19 matching lines...) Expand all
71 return adoptPtrWillBeNoop(new AnimatableValueKeyframe::PropertySpecificKeyfr ame(offset, easing, AnimatableValue::neutralValue(), AnimationEffect::CompositeA dd)); 73 return adoptPtrWillBeNoop(new AnimatableValueKeyframe::PropertySpecificKeyfr ame(offset, easing, AnimatableValue::neutralValue(), AnimationEffect::CompositeA dd));
72 } 74 }
73 75
74 void AnimatableValueKeyframe::PropertySpecificKeyframe::trace(Visitor* visitor) 76 void AnimatableValueKeyframe::PropertySpecificKeyframe::trace(Visitor* visitor)
75 { 77 {
76 visitor->trace(m_value); 78 visitor->trace(m_value);
77 Keyframe::PropertySpecificKeyframe::trace(visitor); 79 Keyframe::PropertySpecificKeyframe::trace(visitor);
78 } 80 }
79 81
80 } 82 }
OLDNEW
« no previous file with comments | « Source/core/animation/ActiveAnimations.cpp ('k') | Source/core/animation/css/CSSAnimations.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698