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

Unified Diff: extensions/browser/api/storage/leveldb_settings_storage_factory.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
Index: extensions/browser/api/storage/leveldb_settings_storage_factory.h
diff --git a/extensions/browser/api/storage/leveldb_settings_storage_factory.h b/extensions/browser/api/storage/leveldb_settings_storage_factory.h
index d755974d4a19561aba246e7408ada304d2a0a359..6f9cc569e1c3ed37ab122b868a98e76a1ecbf71b 100644
--- a/extensions/browser/api/storage/leveldb_settings_storage_factory.h
+++ b/extensions/browser/api/storage/leveldb_settings_storage_factory.h
@@ -12,15 +12,15 @@ namespace extensions {
// Factory for creating LeveldbValueStore instances.
class LeveldbSettingsStorageFactory : public SettingsStorageFactory {
public:
- virtual ValueStore* Create(const base::FilePath& base_path,
- const std::string& extension_id) override;
+ ValueStore* Create(const base::FilePath& base_path,
+ const std::string& extension_id) override;
- virtual void DeleteDatabaseIfExists(const base::FilePath& base_path,
- const std::string& extension_id) override;
+ void DeleteDatabaseIfExists(const base::FilePath& base_path,
+ const std::string& extension_id) override;
private:
// SettingsStorageFactory is refcounted.
- virtual ~LeveldbSettingsStorageFactory() {}
+ ~LeveldbSettingsStorageFactory() override {}
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698