| Index: components/policy/core/common/cloud/user_cloud_policy_store.h
|
| diff --git a/components/policy/core/common/cloud/user_cloud_policy_store.h b/components/policy/core/common/cloud/user_cloud_policy_store.h
|
| index 0862ba4798e1b986ebb937ecc5ae923f1e040972..163f2eeb219c96c875276307e5bbe9589b31e27d 100644
|
| --- a/components/policy/core/common/cloud/user_cloud_policy_store.h
|
| +++ b/components/policy/core/common/cloud/user_cloud_policy_store.h
|
| @@ -33,7 +33,7 @@ class POLICY_EXPORT UserCloudPolicyStore : public UserCloudPolicyStoreBase {
|
| const base::FilePath& key_file,
|
| const std::string& verification_key,
|
| scoped_refptr<base::SequencedTaskRunner> background_task_runner);
|
| - virtual ~UserCloudPolicyStore();
|
| + ~UserCloudPolicyStore() override;
|
|
|
| // Factory method for creating a UserCloudPolicyStore for a profile with path
|
| // |profile_path|.
|
| @@ -53,9 +53,8 @@ class POLICY_EXPORT UserCloudPolicyStore : public UserCloudPolicyStoreBase {
|
| virtual void Clear();
|
|
|
| // CloudPolicyStore implementation.
|
| - virtual void Load() override;
|
| - virtual void Store(
|
| - const enterprise_management::PolicyFetchResponse& policy) override;
|
| + void Load() override;
|
| + void Store(const enterprise_management::PolicyFetchResponse& policy) override;
|
|
|
| // The key used to sign the current policy (empty if there either is no
|
| // loaded policy yet, or if the policy is unsigned).
|
|
|