Index: chrome/common/extensions/extension_set.h |
diff --git a/chrome/common/extensions/extension_set.h b/chrome/common/extensions/extension_set.h |
index 253b8ffd8c0658f9d3da9ea5a3785a332734fe13..43635ba1654b4fc992c047acec02be16ec462827 100644 |
--- a/chrome/common/extensions/extension_set.h |
+++ b/chrome/common/extensions/extension_set.h |
@@ -51,9 +51,9 @@ class ExtensionSet { |
public std::iterator<std::input_iterator_tag, |
scoped_refptr<const extensions::Extension> > { |
public: |
- const_iterator() {} |
- explicit const_iterator(ExtensionMap::const_iterator it) : |
- it_(it) {} |
+ const_iterator(); |
+ const_iterator(const const_iterator& other); |
+ explicit const_iterator(ExtensionMap::const_iterator it); |
const_iterator& operator++() { |
++it_; |
return *this; |