diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 05:38:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 12:38:39 +0000 |
commit | 9168b2fe3e30afa4fd9a9500ba0725edf97c20a3 (patch) | |
tree | bb288d5b7fccc259391b83b18b12368a0d516b21 /extensions/browser/process_map_factory.h | |
parent | ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1 (diff) | |
download | chromium_src-9168b2fe3e30afa4fd9a9500ba0725edf97c20a3.zip chromium_src-9168b2fe3e30afa4fd9a9500ba0725edf97c20a3.tar.gz chromium_src-9168b2fe3e30afa4fd9a9500ba0725edf97c20a3.tar.bz2 |
Standardize usage of virtual/override/final in extensions/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=yoz@chromium.org
Review URL: https://codereview.chromium.org/664933004
Cr-Commit-Position: refs/heads/master@{#300475}
Diffstat (limited to 'extensions/browser/process_map_factory.h')
-rw-r--r-- | extensions/browser/process_map_factory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/browser/process_map_factory.h b/extensions/browser/process_map_factory.h index 6256f95..ea3d618 100644 --- a/extensions/browser/process_map_factory.h +++ b/extensions/browser/process_map_factory.h @@ -25,12 +25,12 @@ class ProcessMapFactory : public BrowserContextKeyedServiceFactory { friend struct DefaultSingletonTraits<ProcessMapFactory>; ProcessMapFactory(); - virtual ~ProcessMapFactory(); + ~ProcessMapFactory() override; // BrowserContextKeyedServiceFactory implementation: - virtual KeyedService* BuildServiceInstanceFor( + KeyedService* BuildServiceInstanceFor( content::BrowserContext* context) const override; - virtual content::BrowserContext* GetBrowserContextToUse( + content::BrowserContext* GetBrowserContextToUse( content::BrowserContext* context) const override; private: |