diff options
Diffstat (limited to 'chrome/common/ref_counted_util.h')
-rw-r--r-- | chrome/common/ref_counted_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/ref_counted_util.h b/chrome/common/ref_counted_util.h index 801aa42..b04580e 100644 --- a/chrome/common/ref_counted_util.h +++ b/chrome/common/ref_counted_util.h @@ -11,11 +11,11 @@ // RefCountedVector is just a vector wrapped up with // RefCountedThreadSafe. template<class T> -class RefCountedVector : - public base::RefCountedThreadSafe<RefCountedVector<T> > { +class RefCountedVector + : public base::RefCountedThreadSafe<RefCountedVector<T> > { public: RefCountedVector() {} - RefCountedVector(const std::vector<T>& initializer) + explicit RefCountedVector(const std::vector<T>& initializer) : data(initializer) {} std::vector<T> data; |