Index: base/memory/ref_counted_memory.h |
diff --git a/base/memory/ref_counted_memory.h b/base/memory/ref_counted_memory.h |
index 9edcd6fdc94d7f358596dcc2a39153a38d7e0b0f..6bac9613fb6abdbf922913668ea8f4bbec5dde88 100644 |
--- a/base/memory/ref_counted_memory.h |
+++ b/base/memory/ref_counted_memory.h |
@@ -62,7 +62,7 @@ class BASE_EXPORT RefCountedBytes : public RefCountedMemory { |
RefCountedBytes(); |
// Constructs a RefCountedBytes object by _copying_ from |initializer|. |
- RefCountedBytes(const std::vector<unsigned char>& initializer); |
+ explicit RefCountedBytes(const std::vector<unsigned char>& initializer); |
// Constructs a RefCountedBytes object by performing a swap. (To non |
// destructively build a RefCountedBytes, use the constructor that takes a |