| Index: components/policy/core/common/configuration_policy_provider.h
|
| diff --git a/components/policy/core/common/configuration_policy_provider.h b/components/policy/core/common/configuration_policy_provider.h
|
| index b01be0ac5974a31bcec307eb757c5e92eb27513c..73a5d1d80f6271b1f08689b1546b1efb00a3b279 100644
|
| --- a/components/policy/core/common/configuration_policy_provider.h
|
| +++ b/components/policy/core/common/configuration_policy_provider.h
|
| @@ -34,7 +34,7 @@ class POLICY_EXPORT ConfigurationPolicyProvider
|
| // and it's not guaranteed that the message loops will still be running when
|
| // this is invoked. Override Shutdown() instead for cleanup code that needs
|
| // to post to the FILE thread, for example.
|
| - virtual ~ConfigurationPolicyProvider();
|
| + ~ConfigurationPolicyProvider() override;
|
|
|
| // Invoked as soon as the main message loops are spinning. Policy providers
|
| // are created early during startup to provide the initial policies; the
|
| @@ -71,8 +71,8 @@ class POLICY_EXPORT ConfigurationPolicyProvider
|
| virtual void RemoveObserver(Observer* observer);
|
|
|
| // SchemaRegistry::Observer:
|
| - virtual void OnSchemaRegistryUpdated(bool has_new_schemas) override;
|
| - virtual void OnSchemaRegistryReady() override;
|
| + void OnSchemaRegistryUpdated(bool has_new_schemas) override;
|
| + void OnSchemaRegistryReady() override;
|
|
|
| protected:
|
| // Subclasses must invoke this to update the policies currently served by
|
|
|