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

Side by Side Diff: Source/core/animation/InterpolationEffect.cpp

Issue 942813002: Oilpan: prefer ENABLE(OILPAN). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
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/InterpolationEffect.h" 6 #include "core/animation/InterpolationEffect.h"
7 7
8 namespace blink { 8 namespace blink {
9 9
10 void InterpolationEffect::getActiveInterpolations(double fraction, double iterat ionDuration, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolatio n>>>& result) const 10 void InterpolationEffect::getActiveInterpolations(double fraction, double iterat ionDuration, OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolatio n>>>& result) const
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 } 73 }
74 } 74 }
75 75
76 void InterpolationEffect::InterpolationRecord::trace(Visitor* visitor) 76 void InterpolationEffect::InterpolationRecord::trace(Visitor* visitor)
77 { 77 {
78 visitor->trace(m_interpolation); 78 visitor->trace(m_interpolation);
79 } 79 }
80 80
81 void InterpolationEffect::trace(Visitor* visitor) 81 void InterpolationEffect::trace(Visitor* visitor)
82 { 82 {
83 #if ENABLE_OILPAN
84 visitor->trace(m_interpolations); 83 visitor->trace(m_interpolations);
85 #endif
86 } 84 }
87 85
88 } 86 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698