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

Unified Diff: chrome/browser/extensions/api/system_storage/system_storage_api.h

Issue 257333002: Drive extension functions from ExtensionFunction::Run. The (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment Created 6 years, 8 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: chrome/browser/extensions/api/system_storage/system_storage_api.h
diff --git a/chrome/browser/extensions/api/system_storage/system_storage_api.h b/chrome/browser/extensions/api/system_storage/system_storage_api.h
index b619809d0fa59b3b9f4d027cb756d3a1b5b53e17..e8118af0e2182e86d7dd8ccbdce6e4b8cf04d244 100644
--- a/chrome/browser/extensions/api/system_storage/system_storage_api.h
+++ b/chrome/browser/extensions/api/system_storage/system_storage_api.h
@@ -20,7 +20,7 @@ class SystemStorageGetInfoFunction : public AsyncExtensionFunction {
private:
virtual ~SystemStorageGetInfoFunction();
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
void OnGetStorageInfoCompleted(bool success);
};
@@ -35,7 +35,7 @@ class SystemStorageEjectDeviceFunction
virtual ~SystemStorageEjectDeviceFunction();
// AsyncExtensionFunction overrides.
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
private:
void OnStorageMonitorInit(const std::string& transient_device_id);
@@ -56,7 +56,7 @@ class SystemStorageGetAvailableCapacityFunction
void OnQueryCompleted(const std::string& transient_id,
double available_capacity);
virtual ~SystemStorageGetAvailableCapacityFunction();
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698