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

Unified Diff: components/policy/core/common/schema_registry.h

Issue 623133002: replace OVERRIDE and FINAL with override and 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
« no previous file with comments | « components/policy/core/common/proxy_policy_provider.h ('k') | components/power/origin_power_map_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy/core/common/schema_registry.h
diff --git a/components/policy/core/common/schema_registry.h b/components/policy/core/common/schema_registry.h
index 6df4db2b19a7565337e8ce2a619990584e37afcc..c0e492fe7a8114473914ba45a716f50e987125cc 100644
--- a/components/policy/core/common/schema_registry.h
+++ b/components/policy/core/common/schema_registry.h
@@ -108,15 +108,15 @@ class POLICY_EXPORT CombinedSchemaRegistry
// SchemaRegistry:
virtual void RegisterComponents(PolicyDomain domain,
- const ComponentMap& components) OVERRIDE;
- virtual void UnregisterComponent(const PolicyNamespace& ns) OVERRIDE;
+ const ComponentMap& components) override;
+ virtual void UnregisterComponent(const PolicyNamespace& ns) override;
// SchemaRegistry::Observer:
- virtual void OnSchemaRegistryUpdated(bool has_new_schemas) OVERRIDE;
- virtual void OnSchemaRegistryReady() OVERRIDE;
+ virtual void OnSchemaRegistryUpdated(bool has_new_schemas) override;
+ virtual void OnSchemaRegistryReady() override;
// SchemaRegistry::InternalObserver:
- virtual void OnSchemaRegistryShuttingDown(SchemaRegistry* registry) OVERRIDE;
+ virtual void OnSchemaRegistryShuttingDown(SchemaRegistry* registry) override;
private:
void Combine(bool has_new_schemas);
@@ -140,15 +140,15 @@ class POLICY_EXPORT ForwardingSchemaRegistry
// SchemaRegistry:
virtual void RegisterComponents(PolicyDomain domain,
- const ComponentMap& components) OVERRIDE;
- virtual void UnregisterComponent(const PolicyNamespace& ns) OVERRIDE;
+ const ComponentMap& components) override;
+ virtual void UnregisterComponent(const PolicyNamespace& ns) override;
// SchemaRegistry::Observer:
- virtual void OnSchemaRegistryUpdated(bool has_new_schemas) OVERRIDE;
- virtual void OnSchemaRegistryReady() OVERRIDE;
+ virtual void OnSchemaRegistryUpdated(bool has_new_schemas) override;
+ virtual void OnSchemaRegistryReady() override;
// SchemaRegistry::InternalObserver:
- virtual void OnSchemaRegistryShuttingDown(SchemaRegistry* registry) OVERRIDE;
+ virtual void OnSchemaRegistryShuttingDown(SchemaRegistry* registry) override;
private:
SchemaRegistry* wrapped_;
« no previous file with comments | « components/policy/core/common/proxy_policy_provider.h ('k') | components/power/origin_power_map_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698