| Index: chrome/browser/policy/schema_registry.cc
|
| diff --git a/chrome/browser/policy/schema_registry.cc b/chrome/browser/policy/schema_registry.cc
|
| index a456708d8598ad582cb90a84ca3e388736cf5154..f005bd02354a5b5a53074553320941d705a6c4bc 100644
|
| --- a/chrome/browser/policy/schema_registry.cc
|
| +++ b/chrome/browser/policy/schema_registry.cc
|
| @@ -53,9 +53,8 @@ void SchemaRegistry::RemoveObserver(Observer* observer) {
|
| }
|
|
|
| void SchemaRegistry::Notify(bool has_new_schemas) {
|
| - FOR_EACH_OBSERVER(Observer,
|
| - observers_,
|
| - OnSchemaRegistryUpdated(schema_map_, has_new_schemas));
|
| + FOR_EACH_OBSERVER(
|
| + Observer, observers_, OnSchemaRegistryUpdated(has_new_schemas));
|
| }
|
|
|
| bool SchemaRegistry::HasObservers() const {
|
| @@ -108,9 +107,7 @@ void CombinedSchemaRegistry::UnregisterComponent(const PolicyNamespace& ns) {
|
| }
|
| }
|
|
|
| -void CombinedSchemaRegistry::OnSchemaRegistryUpdated(
|
| - const scoped_refptr<SchemaMap>& current_map,
|
| - bool has_new_schemas) {
|
| +void CombinedSchemaRegistry::OnSchemaRegistryUpdated(bool has_new_schemas) {
|
| Combine(has_new_schemas);
|
| }
|
|
|
|
|