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

Unified Diff: extensions/browser/extension_prefs.cc

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_prefs.h ('k') | extensions/browser/extension_prefs_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_prefs.cc
diff --git a/extensions/browser/extension_prefs.cc b/extensions/browser/extension_prefs.cc
index 5930b2307f37809dfeecffd1ed03e82ee7048c47..4d476f52a408a5c429f06dbd2ebc0e38aa9ecb10 100644
--- a/extensions/browser/extension_prefs.cc
+++ b/extensions/browser/extension_prefs.cc
@@ -201,11 +201,10 @@ class ScopedExtensionPrefUpdate : public DictionaryPrefUpdate {
DictionaryPrefUpdate(service, pref_names::kExtensions),
extension_id_(extension_id) {}
- virtual ~ScopedExtensionPrefUpdate() {
- }
+ ~ScopedExtensionPrefUpdate() override {}
// DictionaryPrefUpdate overrides:
- virtual base::DictionaryValue* Get() override {
+ base::DictionaryValue* Get() override {
base::DictionaryValue* dict = DictionaryPrefUpdate::Get();
base::DictionaryValue* extension = NULL;
if (!dict->GetDictionary(extension_id_, &extension)) {
« no previous file with comments | « extensions/browser/extension_prefs.h ('k') | extensions/browser/extension_prefs_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698