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

Unified Diff: extensions/browser/api/storage/storage_api.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/storage_api.h
diff --git a/extensions/browser/api/storage/storage_api.h b/extensions/browser/api/storage/storage_api.h
index b4b97da6289bed4714507c0e1f2a5a76059d7eb1..b3544fa80624cf1f2132023a0429032ce4efe587 100644
--- a/extensions/browser/api/storage/storage_api.h
+++ b/extensions/browser/api/storage/storage_api.h
@@ -21,8 +21,8 @@ class SettingsFunction : public UIThreadExtensionFunction {
virtual ~SettingsFunction();
// ExtensionFunction:
- virtual bool ShouldSkipQuotaLimiting() const OVERRIDE;
- virtual ResponseAction Run() OVERRIDE;
+ virtual bool ShouldSkipQuotaLimiting() const override;
+ virtual ResponseAction Run() override;
// Extension settings function implementations should do their work here.
// The StorageFrontend makes sure this is posted to the appropriate thread.
@@ -80,7 +80,7 @@ class StorageStorageAreaGetFunction : public SettingsFunction {
virtual ~StorageStorageAreaGetFunction() {}
// SettingsFunction:
- virtual ResponseValue RunWithStorage(ValueStore* storage) OVERRIDE;
+ virtual ResponseValue RunWithStorage(ValueStore* storage) override;
};
class StorageStorageAreaSetFunction : public SettingsFunction {
@@ -91,11 +91,11 @@ class StorageStorageAreaSetFunction : public SettingsFunction {
virtual ~StorageStorageAreaSetFunction() {}
// SettingsFunction:
- virtual ResponseValue RunWithStorage(ValueStore* storage) OVERRIDE;
+ virtual ResponseValue RunWithStorage(ValueStore* storage) override;
// ExtensionFunction:
virtual void GetQuotaLimitHeuristics(
- QuotaLimitHeuristics* heuristics) const OVERRIDE;
+ QuotaLimitHeuristics* heuristics) const override;
};
class StorageStorageAreaRemoveFunction : public SettingsFunction {
@@ -106,11 +106,11 @@ class StorageStorageAreaRemoveFunction : public SettingsFunction {
virtual ~StorageStorageAreaRemoveFunction() {}
// SettingsFunction:
- virtual ResponseValue RunWithStorage(ValueStore* storage) OVERRIDE;
+ virtual ResponseValue RunWithStorage(ValueStore* storage) override;
// ExtensionFunction:
virtual void GetQuotaLimitHeuristics(
- QuotaLimitHeuristics* heuristics) const OVERRIDE;
+ QuotaLimitHeuristics* heuristics) const override;
};
class StorageStorageAreaClearFunction : public SettingsFunction {
@@ -121,11 +121,11 @@ class StorageStorageAreaClearFunction : public SettingsFunction {
virtual ~StorageStorageAreaClearFunction() {}
// SettingsFunction:
- virtual ResponseValue RunWithStorage(ValueStore* storage) OVERRIDE;
+ virtual ResponseValue RunWithStorage(ValueStore* storage) override;
// ExtensionFunction:
virtual void GetQuotaLimitHeuristics(
- QuotaLimitHeuristics* heuristics) const OVERRIDE;
+ QuotaLimitHeuristics* heuristics) const override;
};
class StorageStorageAreaGetBytesInUseFunction : public SettingsFunction {
@@ -136,7 +136,7 @@ class StorageStorageAreaGetBytesInUseFunction : public SettingsFunction {
virtual ~StorageStorageAreaGetBytesInUseFunction() {}
// SettingsFunction:
- virtual ResponseValue RunWithStorage(ValueStore* storage) OVERRIDE;
+ virtual ResponseValue RunWithStorage(ValueStore* storage) override;
};
} // namespace extensions
« no previous file with comments | « extensions/browser/api/storage/settings_test_util.h ('k') | extensions/browser/api/storage/storage_api_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698