OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef RefVector_h |
| 6 #define RefVector_h |
| 7 |
| 8 #include "wtf/RefCounted.h" |
| 9 #include "wtf/RefPtr.h" |
| 10 #include "wtf/Vector.h" |
| 11 |
| 12 namespace WebCore { |
| 13 |
| 14 template <typename T> |
| 15 class RefVector : public RefCounted<RefVector<T> > { |
| 16 public: |
| 17 static PassRefPtr<RefVector> create() { return adoptRef(new RefVector<T>); } |
| 18 PassRefPtr<RefVector> copy() { return adoptRef(new RefVector<T>(*this)); } |
| 19 |
| 20 const T& operator[](size_t i) const { return m_vector[i]; } |
| 21 T& operator[](size_t i) { return m_vector[i]; } |
| 22 |
| 23 bool operator==(const RefVector& o) const { return m_vector == o.m_vector; } |
| 24 bool operator!=(const RefVector& o) const { return m_vector != o.m_vector; } |
| 25 |
| 26 size_t size() const { return m_vector.size(); } |
| 27 void append(const T& decoration) { m_vector.append(decoration); } |
| 28 const Vector<T>& vector() const { return m_vector; } |
| 29 |
| 30 private: |
| 31 Vector<T> m_vector; |
| 32 RefVector() { } |
| 33 RefVector(const RefVector& o) : m_vector(o.m_vector) { } |
| 34 }; |
| 35 |
| 36 } // namespace WebCore |
| 37 |
| 38 #endif // RefVector_h |
OLD | NEW |