| Index: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| diff --git a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| index 09a892075b42b6b2db6226c4e2b4be81d3eef198..c4571daac6e18ab85fcec3da20fe2e27bd48a7ed 100644
|
| --- a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| +++ b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.cc
|
| @@ -297,6 +297,16 @@ FileSystemProviderInternalGetMetadataRequestedSuccessFunction::RunWhenValid() {
|
| false /* has_more */);
|
| }
|
|
|
| +bool FileSystemProviderInternalGetActionsRequestedSuccessFunction::
|
| + RunWhenValid() {
|
| + using api::file_system_provider_internal::GetActionsRequestedSuccess::Params;
|
| + scoped_ptr<Params> params(Params::Create(*args_));
|
| + EXTENSION_FUNCTION_VALIDATE(params);
|
| +
|
| + return FulfillRequest(RequestValue::CreateForGetActionsSuccess(params.Pass()),
|
| + false /* has_more */);
|
| +}
|
| +
|
| bool FileSystemProviderInternalReadDirectoryRequestedSuccessFunction::
|
| RunWhenValid() {
|
| using api::file_system_provider_internal::ReadDirectoryRequestedSuccess::
|
|
|