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

Side by Side Diff: Source/core/rendering/style/RefVector.h

Issue 219633002: Proper support for multiple text decorations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Resolve decoration colors dynamically. Created 6 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
(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> > {
Peter Beverloo 2014/05/01 17:24:51 should this be in wtf/?
andersr 2014/05/02 11:10:35 Probably. Moved. I guess I need another LGTM, in
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[](int i) const { return m_vector[i]; }
21 T& operator[](int i) { return m_vector[i]; }
22 const T& at(size_t i) const { return m_vector.at(i); }
23 T& at(size_t i) { return m_vector.at(i); }
24
25 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; }
27
28 size_t size() const { return m_vector.size(); }
29 void append(const T& decoration) { m_vector.append(decoration); }
30 const Vector<T>& vector() const { return m_vector; }
31
32 private:
33 Vector<T> m_vector;
34 RefVector() { }
35 RefVector(const RefVector& o) : m_vector(o.m_vector) { }
36 };
37
38 } // namespace WebCore
39
40 #endif // RefVector_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698