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

Unified Diff: extensions/browser/api/system_storage/system_storage_api.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/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 6484a337a4903cc5f9fbd2d5ce029e0f2a67acc0..914e8a228ab91477063ba659c8a0169f392ebbfe 100644
--- a/extensions/browser/api/system_storage/system_storage_api.h
+++ b/extensions/browser/api/system_storage/system_storage_api.h
@@ -19,8 +19,8 @@ class SystemStorageGetInfoFunction : public AsyncExtensionFunction {
SystemStorageGetInfoFunction();
private:
- virtual ~SystemStorageGetInfoFunction();
- virtual bool RunAsync() override;
+ ~SystemStorageGetInfoFunction() override;
+ bool RunAsync() override;
void OnGetStorageInfoCompleted(bool success);
};
@@ -31,10 +31,10 @@ class SystemStorageEjectDeviceFunction : public AsyncExtensionFunction {
SYSTEM_STORAGE_EJECTDEVICE);
protected:
- virtual ~SystemStorageEjectDeviceFunction();
+ ~SystemStorageEjectDeviceFunction() override;
// AsyncExtensionFunction overrides.
- virtual bool RunAsync() override;
+ bool RunAsync() override;
private:
void OnStorageMonitorInit(const std::string& transient_device_id);
@@ -54,8 +54,8 @@ class SystemStorageGetAvailableCapacityFunction
void OnStorageMonitorInit(const std::string& transient_id);
void OnQueryCompleted(const std::string& transient_id,
double available_capacity);
- virtual ~SystemStorageGetAvailableCapacityFunction();
- virtual bool RunAsync() override;
+ ~SystemStorageGetAvailableCapacityFunction() override;
+ 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