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

Unified Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h

Issue 252653002: Rename (Chrome)SyncExtensionFunction::RunImpl to RunSync so that the RunImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bookmarks 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 68c9d783f21cbc664eaee90d5fd826a30b8f7222..e0e962121b301d5a567773bd2aad81ea81923da7 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
@@ -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

Powered by Google App Engine
This is Rietveld 408576698