| 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 68c9d783f21cbc664eaee90d5fd826a30b8f7222..3a01dc497d864145ac4a42c134c3927cb0d577a3 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 RunSync() OVERRIDE;
|
|
|
| private:
|
| void DidDeleteFileSystem(base::File::Error error);
|
| @@ -46,7 +46,7 @@ class SyncFileSystemGetFileStatusFunction
|
|
|
| protected:
|
| virtual ~SyncFileSystemGetFileStatusFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| void DidGetFileStatus(
|
| @@ -63,7 +63,7 @@ class SyncFileSystemGetFileStatusesFunction
|
|
|
| protected:
|
| virtual ~SyncFileSystemGetFileStatusesFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| typedef std::pair<sync_file_system::SyncStatusCode,
|
| @@ -89,7 +89,7 @@ class SyncFileSystemGetUsageAndQuotaFunction
|
|
|
| protected:
|
| virtual ~SyncFileSystemGetUsageAndQuotaFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| void DidGetUsageAndQuota(quota::QuotaStatusCode status,
|
| @@ -105,7 +105,7 @@ class SyncFileSystemRequestFileSystemFunction
|
|
|
| protected:
|
| virtual ~SyncFileSystemRequestFileSystemFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| typedef SyncFileSystemRequestFileSystemFunction self;
|
| @@ -126,7 +126,7 @@ class SyncFileSystemSetConflictResolutionPolicyFunction
|
|
|
| protected:
|
| virtual ~SyncFileSystemSetConflictResolutionPolicyFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class SyncFileSystemGetConflictResolutionPolicyFunction
|
| @@ -137,7 +137,7 @@ class SyncFileSystemGetConflictResolutionPolicyFunction
|
|
|
| protected:
|
| virtual ~SyncFileSystemGetConflictResolutionPolicyFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class SyncFileSystemGetServiceStatusFunction
|
| @@ -148,7 +148,7 @@ class SyncFileSystemGetServiceStatusFunction
|
|
|
| protected:
|
| virtual ~SyncFileSystemGetServiceStatusFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| } // namespace extensions
|
|
|