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

Unified Diff: chrome/common/ref_counted_util.h

Issue 384103: This patch is the rest of the lint cleanup minus the other open issue. (Closed)
Patch Set: Created 11 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/property_bag.h ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/ref_counted_util.h
diff --git a/chrome/common/ref_counted_util.h b/chrome/common/ref_counted_util.h
index 801aa423d7b51be1e602fb7933bea0483401ef01..b04580e2f70e2a33a4643ee8325616ce8baf62cf 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;
« no previous file with comments | « chrome/common/property_bag.h ('k') | chrome/common/render_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698