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

Unified Diff: extensions/browser/api/storage/weak_unlimited_settings_storage.h

Issue 622343002: replace OVERRIDE and FINAL with override and 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/weak_unlimited_settings_storage.h
diff --git a/extensions/browser/api/storage/weak_unlimited_settings_storage.h b/extensions/browser/api/storage/weak_unlimited_settings_storage.h
index 7c4d6b22f73719573515d48a39c34aea99266625..c22b5fedf87f2a970c73d84f4ebbb1c2692d4c67 100644
--- a/extensions/browser/api/storage/weak_unlimited_settings_storage.h
+++ b/extensions/browser/api/storage/weak_unlimited_settings_storage.h
@@ -21,23 +21,23 @@ class WeakUnlimitedSettingsStorage : public ValueStore {
virtual ~WeakUnlimitedSettingsStorage();
// ValueStore implementation.
- virtual size_t GetBytesInUse(const std::string& key) OVERRIDE;
- virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
- virtual size_t GetBytesInUse() OVERRIDE;
- virtual ReadResult Get(const std::string& key) OVERRIDE;
- virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
- virtual ReadResult Get() OVERRIDE;
+ virtual size_t GetBytesInUse(const std::string& key) override;
+ virtual size_t GetBytesInUse(const std::vector<std::string>& keys) override;
+ virtual size_t GetBytesInUse() override;
+ virtual ReadResult Get(const std::string& key) override;
+ virtual ReadResult Get(const std::vector<std::string>& keys) override;
+ virtual ReadResult Get() override;
virtual WriteResult Set(
WriteOptions options,
const std::string& key,
- const base::Value& value) OVERRIDE;
+ const base::Value& value) override;
virtual WriteResult Set(
- WriteOptions options, const base::DictionaryValue& values) OVERRIDE;
- virtual WriteResult Remove(const std::string& key) OVERRIDE;
- virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
- virtual WriteResult Clear() OVERRIDE;
- virtual bool Restore() OVERRIDE;
- virtual bool RestoreKey(const std::string& key) OVERRIDE;
+ WriteOptions options, const base::DictionaryValue& values) override;
+ virtual WriteResult Remove(const std::string& key) override;
+ virtual WriteResult Remove(const std::vector<std::string>& keys) override;
+ virtual WriteResult Clear() override;
+ virtual bool Restore() override;
+ virtual bool RestoreKey(const std::string& key) override;
private:
// The delegate storage area, NOT OWNED.
« no previous file with comments | « extensions/browser/api/storage/storage_frontend_unittest.cc ('k') | extensions/browser/api/system_cpu/cpu_info_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698