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

Unified Diff: extensions/browser/extension_pref_store.h

Issue 664933004: Standardize usage of virtual/override/final in extensions/ (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 | « extensions/browser/extension_message_filter.h ('k') | extensions/browser/extension_pref_value_map.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_pref_store.h
diff --git a/extensions/browser/extension_pref_store.h b/extensions/browser/extension_pref_store.h
index 0d5824d71b5cfdceb1f5011b69646f58e6ccfc2f..162033c924a1564f4077689e5b9334746b4a0b1a 100644
--- a/extensions/browser/extension_pref_store.h
+++ b/extensions/browser/extension_pref_store.h
@@ -21,12 +21,12 @@ class ExtensionPrefStore : public ValueMapPrefStore,
bool incognito_pref_store);
// Overrides for ExtensionPrefValueMap::Observer:
- virtual void OnInitializationCompleted() override;
- virtual void OnPrefValueChanged(const std::string& key) override;
- virtual void OnExtensionPrefValueMapDestruction() override;
+ void OnInitializationCompleted() override;
+ void OnPrefValueChanged(const std::string& key) override;
+ void OnExtensionPrefValueMapDestruction() override;
protected:
- virtual ~ExtensionPrefStore();
+ ~ExtensionPrefStore() override;
private:
ExtensionPrefValueMap* extension_pref_value_map_; // Weak pointer.
« no previous file with comments | « extensions/browser/extension_message_filter.h ('k') | extensions/browser/extension_pref_value_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698