| Index: components/content_settings/core/browser/content_settings_registry.cc
|
| diff --git a/components/content_settings/core/browser/content_settings_registry.cc b/components/content_settings/core/browser/content_settings_registry.cc
|
| index e45fe4a334ffe5c5de5e205769a8c4e27fc9a7ec..cfc4f65a4f9888b73769dc935c75397a256e4354 100644
|
| --- a/components/content_settings/core/browser/content_settings_registry.cc
|
| +++ b/components/content_settings/core/browser/content_settings_registry.cc
|
| @@ -92,6 +92,14 @@ const ContentSettingsInfo* ContentSettingsRegistry::Get(
|
| return nullptr;
|
| }
|
|
|
| +ContentSettingsRegistry::const_iterator ContentSettingsRegistry::begin() const {
|
| + return const_iterator(content_settings_info_.begin());
|
| +}
|
| +
|
| +ContentSettingsRegistry::const_iterator ContentSettingsRegistry::end() const {
|
| + return const_iterator(content_settings_info_.end());
|
| +}
|
| +
|
| void ContentSettingsRegistry::Init() {
|
| // TODO(raymes): This registration code should not have to be in a single
|
| // location. It should be possible to register a setting from the code
|
|
|