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_; } |