Index: chrome/browser/chromeos/extensions/file_manager/private_api_mount.cc |
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.cc |
index 16fa5ac88d521046c7109f3e033c4c7c138a73be..e30dd19b6fd6bdcc9a7c8b04a4611f9b54b10457 100644 |
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.cc |
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.cc |
@@ -25,7 +25,7 @@ namespace file_browser_private = extensions::api::file_browser_private; |
namespace extensions { |
-bool FileBrowserPrivateAddMountFunction::RunImpl() { |
+bool FileBrowserPrivateAddMountFunction::RunAsync() { |
using file_browser_private::AddMount::Params; |
const scoped_ptr<Params> params(Params::Create(*args_)); |
EXTENSION_FUNCTION_VALIDATE(params); |
@@ -89,7 +89,7 @@ void FileBrowserPrivateAddMountFunction::RunAfterMarkCacheFileAsMounted( |
chromeos::MOUNT_TYPE_ARCHIVE); |
} |
-bool FileBrowserPrivateRemoveMountFunction::RunImpl() { |
+bool FileBrowserPrivateRemoveMountFunction::RunAsync() { |
using file_browser_private::RemoveMount::Params; |
const scoped_ptr<Params> params(Params::Create(*args_)); |
EXTENSION_FUNCTION_VALIDATE(params); |
@@ -143,7 +143,7 @@ bool FileBrowserPrivateRemoveMountFunction::RunImpl() { |
return true; |
} |
-bool FileBrowserPrivateGetVolumeMetadataListFunction::RunImpl() { |
+bool FileBrowserPrivateGetVolumeMetadataListFunction::RunAsync() { |
if (args_->GetSize()) |
return false; |