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

Unified Diff: chrome/browser/policy/profile_policy_connector_factory.h

Issue 660123003: Standardize usage of virtual/override/final in chrome/browser/policy/ (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 | « chrome/browser/policy/profile_policy_connector.h ('k') | chrome/browser/policy/schema_registry_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/policy/profile_policy_connector_factory.h
diff --git a/chrome/browser/policy/profile_policy_connector_factory.h b/chrome/browser/policy/profile_policy_connector_factory.h
index 22569f4c3ec9e01d070457f1cf3a3c9cd60a1e96..f11c3de52053fa67b23107170eaf526bf4f687f8 100644
--- a/chrome/browser/policy/profile_policy_connector_factory.h
+++ b/chrome/browser/policy/profile_policy_connector_factory.h
@@ -67,7 +67,7 @@ class ProfilePolicyConnectorFactory : public BrowserContextKeyedBaseFactory {
friend struct DefaultSingletonTraits<ProfilePolicyConnectorFactory>;
ProfilePolicyConnectorFactory();
- virtual ~ProfilePolicyConnectorFactory();
+ ~ProfilePolicyConnectorFactory() override;
ProfilePolicyConnector* GetForProfileInternal(Profile* profile);
@@ -76,14 +76,11 @@ class ProfilePolicyConnectorFactory : public BrowserContextKeyedBaseFactory {
bool force_immediate_load);
// BrowserContextKeyedBaseFactory:
- virtual void BrowserContextShutdown(
- content::BrowserContext* context) override;
- virtual void BrowserContextDestroyed(
- content::BrowserContext* context) override;
- virtual void SetEmptyTestingFactory(
- content::BrowserContext* context) override;
- virtual bool HasTestingFactory(content::BrowserContext* context) override;
- virtual void CreateServiceNow(content::BrowserContext* context) override;
+ void BrowserContextShutdown(content::BrowserContext* context) override;
+ void BrowserContextDestroyed(content::BrowserContext* context) override;
+ void SetEmptyTestingFactory(content::BrowserContext* context) override;
+ bool HasTestingFactory(content::BrowserContext* context) override;
+ void CreateServiceNow(content::BrowserContext* context) override;
typedef std::map<Profile*, ProfilePolicyConnector*> ConnectorMap;
ConnectorMap connectors_;
« no previous file with comments | « chrome/browser/policy/profile_policy_connector.h ('k') | chrome/browser/policy/schema_registry_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698