Index: chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc |
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc |
index a96a1fcd57a12d45c83a6ee1cb0b5da10ad5278d..375a7bd8af8948636b70f670af3537c1f3ced190 100644 |
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc |
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.cc |
@@ -25,14 +25,14 @@ SelectFileDialogExtension::RoutingID GetFileDialogRoutingID( |
} // namespace |
-bool FileBrowserPrivateCancelDialogFunction::RunImpl() { |
+bool FileBrowserPrivateCancelDialogFunction::RunAsync() { |
SelectFileDialogExtension::OnFileSelectionCanceled( |
GetFileDialogRoutingID(this)); |
SendResponse(true); |
return true; |
} |
-bool FileBrowserPrivateSelectFileFunction::RunImpl() { |
+bool FileBrowserPrivateSelectFileFunction::RunAsync() { |
using extensions::api::file_browser_private::SelectFile::Params; |
const scoped_ptr<Params> params(Params::Create(*args_)); |
EXTENSION_FUNCTION_VALIDATE(params); |
@@ -73,7 +73,7 @@ void FileBrowserPrivateSelectFileFunction::GetSelectedFileInfoResponse( |
SendResponse(true); |
} |
-bool FileBrowserPrivateSelectFilesFunction::RunImpl() { |
+bool FileBrowserPrivateSelectFilesFunction::RunAsync() { |
using extensions::api::file_browser_private::SelectFiles::Params; |
const scoped_ptr<Params> params(Params::Create(*args_)); |
EXTENSION_FUNCTION_VALIDATE(params); |