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