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

Side by Side Diff: third_party/WebKit/Source/core/animation/InterpolableValue.cpp

Issue 1977763002: Remove OwnPtr::release() calls in core/ (part 1). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove static_pointer_cast<>s. Created 4 years, 7 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
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 "core/animation/InterpolableValue.h" 5 #include "core/animation/InterpolableValue.h"
6 6
7 namespace blink { 7 namespace blink {
8 8
9 bool InterpolableNumber::equals(const InterpolableValue& other) const 9 bool InterpolableNumber::equals(const InterpolableValue& other) const
10 { 10 {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 ASSERT(toList.m_values[i]); 60 ASSERT(toList.m_values[i]);
61 m_values[i]->interpolate(*(toList.m_values[i]), progress, *(resultList.m _values[i])); 61 m_values[i]->interpolate(*(toList.m_values[i]), progress, *(resultList.m _values[i]));
62 } 62 }
63 } 63 }
64 64
65 PassOwnPtr<InterpolableValue> InterpolableList::cloneAndZero() const 65 PassOwnPtr<InterpolableValue> InterpolableList::cloneAndZero() const
66 { 66 {
67 OwnPtr<InterpolableList> result = InterpolableList::create(m_size); 67 OwnPtr<InterpolableList> result = InterpolableList::create(m_size);
68 for (size_t i = 0; i < m_size; i++) 68 for (size_t i = 0; i < m_size; i++)
69 result->set(i, m_values[i]->cloneAndZero()); 69 result->set(i, m_values[i]->cloneAndZero());
70 return result.release(); 70 return std::move(result);
71 } 71 }
72 72
73 void InterpolableNumber::scale(double scale) 73 void InterpolableNumber::scale(double scale)
74 { 74 {
75 m_value = m_value * scale; 75 m_value = m_value * scale;
76 } 76 }
77 77
78 void InterpolableList::scale(double scale) 78 void InterpolableList::scale(double scale)
79 { 79 {
80 for (size_t i = 0; i < m_size; i++) 80 for (size_t i = 0; i < m_size; i++)
(...skipping 18 matching lines...) Expand all
99 const InterpolableAnimatableValue& toValue = toInterpolableAnimatableValue(t o); 99 const InterpolableAnimatableValue& toValue = toInterpolableAnimatableValue(t o);
100 InterpolableAnimatableValue& resultValue = toInterpolableAnimatableValue(res ult); 100 InterpolableAnimatableValue& resultValue = toInterpolableAnimatableValue(res ult);
101 if (progress == 0) 101 if (progress == 0)
102 resultValue.m_value = m_value; 102 resultValue.m_value = m_value;
103 if (progress == 1) 103 if (progress == 1)
104 resultValue.m_value = toValue.m_value; 104 resultValue.m_value = toValue.m_value;
105 resultValue.m_value = AnimatableValue::interpolate(m_value.get(), toValue.m_ value.get(), progress); 105 resultValue.m_value = AnimatableValue::interpolate(m_value.get(), toValue.m_ value.get(), progress);
106 } 106 }
107 107
108 } // namespace blink 108 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698