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

Unified Diff: extensions/browser/api/system_storage/system_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/system_storage/system_storage_api.h
diff --git a/extensions/browser/api/system_storage/system_storage_api.h b/extensions/browser/api/system_storage/system_storage_api.h
index 203aeca0eb3cbcd8b5586e60105e61a4fdca444e..6484a337a4903cc5f9fbd2d5ce029e0f2a67acc0 100644
--- a/extensions/browser/api/system_storage/system_storage_api.h
+++ b/extensions/browser/api/system_storage/system_storage_api.h
@@ -20,7 +20,7 @@ class SystemStorageGetInfoFunction : public AsyncExtensionFunction {
private:
virtual ~SystemStorageGetInfoFunction();
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
void OnGetStorageInfoCompleted(bool success);
};
@@ -34,7 +34,7 @@ class SystemStorageEjectDeviceFunction : public AsyncExtensionFunction {
virtual ~SystemStorageEjectDeviceFunction();
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void OnStorageMonitorInit(const std::string& transient_device_id);
@@ -55,7 +55,7 @@ class SystemStorageGetAvailableCapacityFunction
void OnQueryCompleted(const std::string& transient_id,
double available_capacity);
virtual ~SystemStorageGetAvailableCapacityFunction();
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
} // namespace extensions
« no previous file with comments | « extensions/browser/api/system_storage/storage_info_provider.h ('k') | extensions/browser/api/test/test_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698