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

Unified Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_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/sync_file_system/sync_file_system_api.h
diff --git a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
index e0e962121b301d5a567773bd2aad81ea81923da7..afc06dd138b05c218976c58344bac97a1d3710db 100644
--- a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
+++ b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h
@@ -32,7 +32,7 @@ class SyncFileSystemDeleteFileSystemFunction
protected:
virtual ~SyncFileSystemDeleteFileSystemFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
private:
void DidDeleteFileSystem(base::File::Error error);
@@ -46,7 +46,7 @@ class SyncFileSystemGetFileStatusFunction
protected:
virtual ~SyncFileSystemGetFileStatusFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
private:
void DidGetFileStatus(
@@ -63,7 +63,7 @@ class SyncFileSystemGetFileStatusesFunction
protected:
virtual ~SyncFileSystemGetFileStatusesFunction();
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
private:
typedef std::pair<sync_file_system::SyncStatusCode,
@@ -89,7 +89,7 @@ class SyncFileSystemGetUsageAndQuotaFunction
protected:
virtual ~SyncFileSystemGetUsageAndQuotaFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
private:
void DidGetUsageAndQuota(quota::QuotaStatusCode status,
@@ -105,7 +105,7 @@ class SyncFileSystemRequestFileSystemFunction
protected:
virtual ~SyncFileSystemRequestFileSystemFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunAsync() OVERRIDE;
private:
typedef SyncFileSystemRequestFileSystemFunction self;

Powered by Google App Engine
This is Rietveld 408576698