| Index: chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
|
| index 899f047bda4cf07a81ae7e61ac1adcae987a80ab..c333a154f1e8266b801299bd13f80c1ea5db8e7e 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_dialog.h
|
| @@ -29,7 +29,7 @@ class FileBrowserPrivateCancelDialogFunction
|
| virtual ~FileBrowserPrivateCancelDialogFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| class FileBrowserPrivateSelectFileFunction
|
| @@ -42,7 +42,7 @@ class FileBrowserPrivateSelectFileFunction
|
| virtual ~FileBrowserPrivateSelectFileFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| private:
|
| // A callback method to handle the result of GetSelectedFileInfo.
|
| @@ -62,7 +62,7 @@ class FileBrowserPrivateSelectFilesFunction
|
| virtual ~FileBrowserPrivateSelectFilesFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| private:
|
| // A callback method to handle the result of GetSelectedFileInfo.
|
|
|