Index: Source/platform/transforms/TransformOperations.h |
diff --git a/Source/platform/transforms/TransformOperations.h b/Source/platform/transforms/TransformOperations.h |
index 09008a06da570cb590794b3974e403da075f6a71..eee61bda69d400479243d47bd0df2aed50de456d 100644 |
--- a/Source/platform/transforms/TransformOperations.h |
+++ b/Source/platform/transforms/TransformOperations.h |
@@ -75,8 +75,8 @@ public: |
m_operations.clear(); |
} |
- Vector<RefPtr<TransformOperation> >& operations() { return m_operations; } |
- const Vector<RefPtr<TransformOperation> >& operations() const { return m_operations; } |
+ Vector<RefPtr<TransformOperation>>& operations() { return m_operations; } |
+ const Vector<RefPtr<TransformOperation>>& operations() const { return m_operations; } |
size_t size() const { return m_operations.size(); } |
const TransformOperation* at(size_t index) const { return index < m_operations.size() ? m_operations.at(index).get() : 0; } |
@@ -88,7 +88,7 @@ public: |
TransformOperations add(const TransformOperations& addend) const; |
private: |
- Vector<RefPtr<TransformOperation> > m_operations; |
+ Vector<RefPtr<TransformOperation>> m_operations; |
}; |
} // namespace blink |