| Index: chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc
|
| index da77c4242c454e5e65c0e418ad67f4ac2cbce891..2e6553b4099f0c37978dd125dde2ac6652ae2288 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.cc
|
| @@ -167,7 +167,7 @@ FileBrowserPrivateZipSelectionFunction::
|
| FileBrowserPrivateZipSelectionFunction::
|
| ~FileBrowserPrivateZipSelectionFunction() {}
|
|
|
| -bool FileBrowserPrivateZipSelectionFunction::RunImpl() {
|
| +bool FileBrowserPrivateZipSelectionFunction::RunAsync() {
|
| using extensions::api::file_browser_private::ZipSelection::Params;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
| @@ -257,7 +257,7 @@ bool FileBrowserPrivateZoomFunction::RunSync() {
|
| return true;
|
| }
|
|
|
| -bool FileBrowserPrivateInstallWebstoreItemFunction::RunImpl() {
|
| +bool FileBrowserPrivateInstallWebstoreItemFunction::RunAsync() {
|
| using extensions::api::file_browser_private::InstallWebstoreItem::Params;
|
| const scoped_ptr<Params> params(Params::Create(*args_));
|
| EXTENSION_FUNCTION_VALIDATE(params);
|
| @@ -312,7 +312,7 @@ FileBrowserPrivateRequestWebStoreAccessTokenFunction::
|
| ~FileBrowserPrivateRequestWebStoreAccessTokenFunction() {
|
| }
|
|
|
| -bool FileBrowserPrivateRequestWebStoreAccessTokenFunction::RunImpl() {
|
| +bool FileBrowserPrivateRequestWebStoreAccessTokenFunction::RunAsync() {
|
| std::vector<std::string> scopes;
|
| scopes.push_back(kCWSScope);
|
|
|
|
|