Index: chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
index b66f8e0c7ba4f24cae0ee8b441668511c334ca69..69c2d9d44aa71245d88bfdbadaded2f9a6c2685f 100644 |
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h |
@@ -30,11 +30,11 @@ class FileBrowserPrivateAddMountFunction : public LoggedAsyncExtensionFunction { |
virtual ~FileBrowserPrivateAddMountFunction() {} |
// AsyncExtensionFunction overrides. |
- virtual bool RunImpl() OVERRIDE; |
+ virtual bool RunAsync() OVERRIDE; |
private: |
// Part of Run(). Called after MarkCacheFielAsMounted for Drive File System. |
- // (or directly called from RunImpl() for other file system). |
+ // (or directly called from RunAsync() for other file system). |
void RunAfterMarkCacheFileAsMounted(const base::FilePath& display_name, |
drive::FileError error, |
const base::FilePath& file_path); |
@@ -52,7 +52,7 @@ class FileBrowserPrivateRemoveMountFunction |
virtual ~FileBrowserPrivateRemoveMountFunction() {} |
// AsyncExtensionFunction overrides. |
- virtual bool RunImpl() OVERRIDE; |
+ virtual bool RunAsync() OVERRIDE; |
}; |
// Implements chrome.fileBrowserPrivate.getVolumeMetadataList method. |
@@ -66,7 +66,7 @@ class FileBrowserPrivateGetVolumeMetadataListFunction |
virtual ~FileBrowserPrivateGetVolumeMetadataListFunction() {} |
// AsyncExtensionFunction overrides. |
- virtual bool RunImpl() OVERRIDE; |
+ virtual bool RunAsync() OVERRIDE; |
}; |
} // namespace extensions |