| Index: chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc
|
| index 0e703c5a04d42069b5eb76aff93f5969844d039d..e2cb9fed2068f47a2604b66a58910e9f3329dcf4 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc
|
| @@ -87,7 +87,7 @@ void SniffMimeType(PathAndMimeTypeSet* path_mime_set,
|
|
|
| } // namespace
|
|
|
| -bool FileBrowserPrivateExecuteTaskFunction::RunImpl() {
|
| +bool FileBrowserPrivateExecuteTaskFunction::RunAsync() {
|
| using extensions::api::file_browser_private::ExecuteTask::Params;
|
| using extensions::api::file_browser_private::ExecuteTask::Results::Create;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| @@ -146,7 +146,7 @@ void FileBrowserPrivateExecuteTaskFunction::OnTaskExecuted(
|
| extensions::api::file_browser_private::TASK_RESULT_FAILED);
|
| }
|
|
|
| -bool FileBrowserPrivateGetFileTasksFunction::RunImpl() {
|
| +bool FileBrowserPrivateGetFileTasksFunction::RunAsync() {
|
| using extensions::api::file_browser_private::GetFileTasks::Params;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
|
|