Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: components/policy/core/common/cloud/user_cloud_policy_store.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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).

Powered by Google App Engine
This is Rietveld 408576698