| Index: chrome/browser/android/banners/app_banner_infobar_delegate_android.h
|
| diff --git a/chrome/browser/android/banners/app_banner_infobar_delegate_android.h b/chrome/browser/android/banners/app_banner_infobar_delegate_android.h
|
| index b1eb13322187f5b85b70043f63ee2837cf4d3ecf..7d9f1e9c2510280a0cf7b3245875a003fd1390ee 100644
|
| --- a/chrome/browser/android/banners/app_banner_infobar_delegate_android.h
|
| +++ b/chrome/browser/android/banners/app_banner_infobar_delegate_android.h
|
| @@ -28,6 +28,7 @@ namespace infobars {
|
| class InfoBarManager;
|
| }
|
|
|
| +enum class WebApkInstallResult;
|
| struct ShortcutInfo;
|
|
|
| namespace banners {
|
| @@ -125,11 +126,11 @@ class AppBannerInfoBarDelegateAndroid : public ConfirmInfoBarDelegate {
|
| // A2HS menu item. Otherwise returns true.
|
| bool TriggeredFromBanner() const;
|
| void SendBannerAccepted();
|
| - void OnWebApkInstallFinished(bool success,
|
| + void OnWebApkInstallFinished(WebApkInstallResult result,
|
| const std::string& webapk_package_name);
|
|
|
| // Called when a WebAPK install fails.
|
| - void OnWebApkInstallFailed();
|
| + void OnWebApkInstallFailed(WebApkInstallResult result);
|
|
|
| void TrackWebApkInstallationDismissEvents(InstallState install_state);
|
|
|
|
|