| Index: chrome/common/extensions/extension_set.cc
|
| diff --git a/chrome/common/extensions/extension_set.cc b/chrome/common/extensions/extension_set.cc
|
| index 22f0ed22d1f81724be7da91523aa4c758ba8306c..857471ce8e3f32a8b429a04d8e267417eaa32a17 100644
|
| --- a/chrome/common/extensions/extension_set.cc
|
| +++ b/chrome/common/extensions/extension_set.cc
|
| @@ -21,6 +21,16 @@ ExtensionURLInfo::ExtensionURLInfo(const GURL& url)
|
| : url_(url) {
|
| }
|
|
|
| +ExtensionSet::const_iterator::const_iterator() {}
|
| +
|
| +ExtensionSet::const_iterator::const_iterator(const const_iterator& other)
|
| + : it_(other.it_) {
|
| +}
|
| +
|
| +ExtensionSet::const_iterator::const_iterator(ExtensionMap::const_iterator it)
|
| + : it_(it) {
|
| +}
|
| +
|
| ExtensionSet::ExtensionSet() {
|
| }
|
|
|
|
|