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

Unified Diff: chrome/browser/extensions/api/file_system/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/file_system/file_system_api.h
diff --git a/chrome/browser/extensions/api/file_system/file_system_api.h b/chrome/browser/extensions/api/file_system/file_system_api.h
index a8ff51366b5213740c286baa256ad2ed391cdbc1..a2a8c706df9c701bf37f607eb7e1fabb0eb19f70 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api.h
+++ b/chrome/browser/extensions/api/file_system/file_system_api.h
@@ -40,7 +40,7 @@ class FileSystemGetDisplayPathFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~FileSystemGetDisplayPathFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class FileSystemEntryFunction : public ChromeAsyncExtensionFunction {
@@ -105,7 +105,7 @@ class FileSystemIsWritableEntryFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~FileSystemIsWritableEntryFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class FileSystemChooseEntryFunction : public FileSystemEntryFunction {
@@ -198,7 +198,7 @@ class FileSystemIsRestorableFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~FileSystemIsRestorableFunction() {}
- virtual bool RunImpl() OVERRIDE;
+ virtual bool RunSync() OVERRIDE;
};
class FileSystemRestoreEntryFunction : public FileSystemEntryFunction {

Powered by Google App Engine
This is Rietveld 408576698