| 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 c20e9c996c0a329e44b1455b19c6bd7ad1809b4b..402fd650ac2bd3d9c55cc1dbd9b399f232e32d35 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
|
| @@ -298,6 +298,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::
|
|
|