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

Unified Diff: chrome/common/property_bag.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/notification_type.h ('k') | chrome/common/ref_counted_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/property_bag.h
diff --git a/chrome/common/property_bag.h b/chrome/common/property_bag.h
index 602c1615704afffb40a5c71173a1c330aecdc927..778d0b95b21b0d959f70c7b40c203a61dec87244 100644
--- a/chrome/common/property_bag.h
+++ b/chrome/common/property_bag.h
@@ -154,7 +154,7 @@ class PropertyAccessor : public PropertyAccessorBase {
private:
class Container : public PropertyBag::Prop {
public:
- Container(const T& data) : data_(data) {}
+ explicit Container(const T& data) : data_(data) {}
T* get() { return &data_; }
const T* get() const { return &data_; }
« no previous file with comments | « chrome/common/notification_type.h ('k') | chrome/common/ref_counted_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698