| Index: chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| index 628a6355108354eb63d9cd0d3b6aad9d7ae2b91b..d6f4a595860947468cc2635c909e9fe5c6b6f231 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| @@ -74,7 +74,7 @@ class FileBrowserPrivateZipSelectionFunction
|
| virtual ~FileBrowserPrivateZipSelectionFunction();
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| // Receives the result from ZipFileCreator.
|
| void OnZipDone(bool success);
|
| @@ -107,7 +107,7 @@ class FileBrowserPrivateInstallWebstoreItemFunction
|
| virtual ~FileBrowserPrivateInstallWebstoreItemFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| void OnInstallComplete(bool success, const std::string& error);
|
|
|
| private:
|
| @@ -124,7 +124,7 @@ class FileBrowserPrivateRequestWebStoreAccessTokenFunction
|
|
|
| protected:
|
| virtual ~FileBrowserPrivateRequestWebStoreAccessTokenFunction();
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| private:
|
| scoped_ptr<google_apis::AuthServiceInterface> auth_service_;
|
|
|