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

Unified Diff: components/policy/core/common/cloud/component_cloud_policy_service.cc

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/component_cloud_policy_service.cc
diff --git a/components/policy/core/common/cloud/component_cloud_policy_service.cc b/components/policy/core/common/cloud/component_cloud_policy_service.cc
index 7cb6335a45326e4c2f97dc92091820dee0377638..0ba5db11f3d5736ce033cf6d8615c8abe48624f6 100644
--- a/components/policy/core/common/cloud/component_cloud_policy_service.cc
+++ b/components/policy/core/common/cloud/component_cloud_policy_service.cc
@@ -62,7 +62,7 @@ class ComponentCloudPolicyService::Backend
scoped_ptr<ResourceCache> cache,
scoped_ptr<ExternalPolicyDataFetcher> external_policy_data_fetcher);
- virtual ~Backend();
+ ~Backend() override;
// |username| and |dm_token| will be used to validate the cached policies.
void SetCredentials(const std::string& username, const std::string& dm_token);
@@ -75,7 +75,7 @@ class ComponentCloudPolicyService::Backend
void UpdateExternalPolicy(scoped_ptr<em::PolicyFetchResponse> response);
// ComponentCloudPolicyStore::Delegate implementation:
- virtual void OnComponentCloudPolicyStoreUpdated() override;
+ void OnComponentCloudPolicyStoreUpdated() override;
// Passes the current SchemaMap so that the disk cache can purge components
// that aren't being tracked anymore.

Powered by Google App Engine
This is Rietveld 408576698