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

Unified Diff: Source/core/animation/animatable/AnimatableRepeatable.h

Issue 984153002: Fix template angle bracket syntax in animation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 | « Source/core/animation/SampledEffect.cpp ('k') | Source/core/animation/animatable/AnimatableRepeatable.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/animatable/AnimatableRepeatable.h
diff --git a/Source/core/animation/animatable/AnimatableRepeatable.h b/Source/core/animation/animatable/AnimatableRepeatable.h
index c8dcfe0e83e49d2bef1da29c31913520a7f8de00..4223e4585a4645389561cba97920b8581e4401ce 100644
--- a/Source/core/animation/animatable/AnimatableRepeatable.h
+++ b/Source/core/animation/animatable/AnimatableRepeatable.h
@@ -43,12 +43,12 @@ public:
virtual ~AnimatableRepeatable() { }
// This will consume the vector passed into it.
- static PassRefPtrWillBeRawPtr<AnimatableRepeatable> create(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values)
+ static PassRefPtrWillBeRawPtr<AnimatableRepeatable> create(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& values)
{
return adoptRefWillBeNoop(new AnimatableRepeatable(values));
}
- const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values() const { return m_values; }
+ const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& values() const { return m_values; }
DECLARE_VIRTUAL_TRACE();
@@ -56,17 +56,17 @@ protected:
AnimatableRepeatable()
{
}
- AnimatableRepeatable(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values)
+ AnimatableRepeatable(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& values)
{
ASSERT(!values.isEmpty());
m_values.swap(values);
}
- static bool interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& interpolatedValues);
+ static bool interpolateLists(const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& fromValues, const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& toValues, double fraction, WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>>& interpolatedValues);
virtual bool usesDefaultInterpolationWith(const AnimatableValue*) const override;
- WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> > m_values;
+ WillBeHeapVector<RefPtrWillBeMember<AnimatableValue>> m_values;
private:
virtual PassRefPtrWillBeRawPtr<AnimatableValue> interpolateTo(const AnimatableValue*, double fraction) const override;
« no previous file with comments | « Source/core/animation/SampledEffect.cpp ('k') | Source/core/animation/animatable/AnimatableRepeatable.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698