Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_INFOBAR_DELEGATE_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_INFOBAR_DELEGATE_ANDROID_H_ |
| 6 #define CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_INFOBAR_DELEGATE_ANDROID_H_ | 6 #define CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_INFOBAR_DELEGATE_ANDROID_H_ |
| 7 | 7 |
| 8 #include "base/android/scoped_java_ref.h" | 8 #include "base/android/scoped_java_ref.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "chrome/browser/banners/app_banner_manager.h" | 12 #include "chrome/browser/banners/app_banner_manager.h" |
| 13 #include "components/infobars/core/confirm_infobar_delegate.h" | 13 #include "components/infobars/core/confirm_infobar_delegate.h" |
| 14 #include "content/public/common/manifest.h" | |
| 15 #include "ui/gfx/image/image.h" | 14 #include "ui/gfx/image/image.h" |
| 16 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 17 | 16 |
| 18 namespace content { | 17 namespace content { |
| 19 class WebContents; | 18 class WebContents; |
| 20 } | 19 } |
| 21 | 20 |
| 22 namespace infobars { | 21 namespace infobars { |
| 23 class InfoBarManager; | 22 class InfoBarManager; |
| 24 } | 23 } |
| 25 | 24 |
| 26 class AppBannerInfoBar; | 25 class AppBannerInfoBar; |
| 26 struct ShortcutInfo; | |
| 27 | 27 |
| 28 namespace banners { | 28 namespace banners { |
| 29 | 29 |
| 30 // Manages installation of an app being promoted by a page. | 30 // Manages installation of an app being promoted by a page. |
| 31 class AppBannerInfoBarDelegateAndroid : public ConfirmInfoBarDelegate { | 31 class AppBannerInfoBarDelegateAndroid : public ConfirmInfoBarDelegate { |
| 32 public: | 32 public: |
| 33 // Delegate for promoting a web app. | 33 // Creates and shows the infobar a web app. |
|
Peter Kasting
2016/09/08 04:56:57
Nit: Grammar.
Also, rather than "shows" I would b
Xi Han
2016/09/08 15:49:10
Done.
| |
| 34 AppBannerInfoBarDelegateAndroid( | 34 static bool Create( |
| 35 content::WebContents* web_contents, | |
| 35 base::WeakPtr<AppBannerManager> weak_manager, | 36 base::WeakPtr<AppBannerManager> weak_manager, |
| 36 const base::string16& app_title, | 37 const base::string16& app_title, |
| 37 const GURL& manifest_url, | 38 std::unique_ptr<ShortcutInfo> info, |
| 38 const content::Manifest& manifest, | |
| 39 const GURL& icon_url, | |
| 40 std::unique_ptr<SkBitmap> icon, | 39 std::unique_ptr<SkBitmap> icon, |
| 41 int event_request_id, | 40 int event_request_id, |
| 42 bool is_webapk); | 41 bool is_webapk, |
| 42 bool start_install_webapk); | |
| 43 | 43 |
| 44 // Delegate for promoting an Android app. | 44 // Creates and shows the infobar for an Android app. |
| 45 AppBannerInfoBarDelegateAndroid( | 45 static bool Create( |
| 46 content::WebContents* web_contents, | |
| 46 const base::string16& app_title, | 47 const base::string16& app_title, |
| 47 const base::android::ScopedJavaGlobalRef<jobject>& native_app_data, | 48 const base::android::ScopedJavaGlobalRef<jobject>& native_app_data, |
| 48 std::unique_ptr<SkBitmap> icon, | 49 std::unique_ptr<SkBitmap> icon, |
| 49 const std::string& native_app_package, | 50 const std::string& native_app_package, |
| 50 const std::string& referrer, | 51 const std::string& referrer, |
| 51 int event_request_id); | 52 int event_request_id); |
| 52 | 53 |
| 53 ~AppBannerInfoBarDelegateAndroid() override; | 54 ~AppBannerInfoBarDelegateAndroid() override; |
| 54 | 55 |
| 55 // Called when the AppBannerInfoBar's button needs to be updated. | 56 // Called when the AppBannerInfoBar's button needs to be updated. |
| 56 void UpdateInstallState(JNIEnv* env, | 57 void UpdateInstallState(JNIEnv* env, |
| 57 const base::android::JavaParamRef<jobject>& obj); | 58 const base::android::JavaParamRef<jobject>& obj); |
| 58 | 59 |
| 59 // Called when the installation Intent has been handled and focus has been | 60 // Called when the installation Intent has been handled and focus has been |
| 60 // returned to Chrome. | 61 // returned to Chrome. |
| 61 void OnInstallIntentReturned(JNIEnv* env, | 62 void OnInstallIntentReturned(JNIEnv* env, |
| 62 const base::android::JavaParamRef<jobject>& obj, | 63 const base::android::JavaParamRef<jobject>& obj, |
| 63 jboolean jis_installing); | 64 jboolean jis_installing); |
| 64 | 65 |
| 65 // Called when the InstallerDelegate task has finished. | 66 // Called when the InstallerDelegate task has finished. |
| 66 void OnInstallFinished(JNIEnv* env, | 67 void OnInstallFinished(JNIEnv* env, |
| 67 const base::android::JavaParamRef<jobject>& obj, | 68 const base::android::JavaParamRef<jobject>& obj, |
| 68 jboolean success); | 69 jboolean success); |
| 69 | 70 |
| 71 // Called in the following cases: | |
| 72 // - when user clicks the "Add To Homescreen" from the app menu to install a | |
| 73 // WebAPK; | |
| 74 // - user accepts to install a WebAPK via the app banner; | |
| 75 // - user clicks the "open" button on the app banner after the WebAPK is | |
| 76 // installed. | |
|
Peter Kasting
2016/09/08 04:56:57
Rather than describing when this is called (which
Xi Han
2016/09/08 15:49:10
Done.
| |
| 77 bool AcceptWebApk(content::WebContents* web_contents); | |
| 78 | |
| 70 private: | 79 private: |
| 80 // Delegate for promoting a web app. | |
| 81 AppBannerInfoBarDelegateAndroid( | |
| 82 base::WeakPtr<AppBannerManager> weak_manager, | |
| 83 const base::string16& app_title, | |
| 84 std::unique_ptr<ShortcutInfo> info, | |
| 85 std::unique_ptr<SkBitmap> icon, | |
| 86 int event_request_id, | |
| 87 bool is_webapk); | |
| 88 | |
| 89 // Delegate for promoting an Android app. | |
| 90 AppBannerInfoBarDelegateAndroid( | |
| 91 const base::string16& app_title, | |
| 92 const base::android::ScopedJavaGlobalRef<jobject>& native_app_data, | |
| 93 std::unique_ptr<SkBitmap> icon, | |
| 94 const std::string& native_app_package, | |
| 95 const std::string& referrer, | |
| 96 int event_request_id); | |
| 97 | |
| 71 void CreateJavaDelegate(); | 98 void CreateJavaDelegate(); |
| 72 bool AcceptNativeApp(content::WebContents* web_contents); | 99 bool AcceptNativeApp(content::WebContents* web_contents); |
| 73 bool AcceptWebApp(content::WebContents* web_contents); | 100 bool AcceptWebApp(content::WebContents* web_contents); |
| 74 bool AcceptWebApk(content::WebContents* web_contents); | |
| 75 void SendBannerAccepted(content::WebContents* web_contents, | 101 void SendBannerAccepted(content::WebContents* web_contents, |
| 76 const std::string& platform); | 102 const std::string& platform); |
| 77 void OnWebApkInstallFinished(bool success, const std::string& webapk_package); | 103 void OnWebApkInstallFinished(bool success, const std::string& webapk_package); |
| 78 | 104 |
| 79 // ConfirmInfoBarDelegate: | 105 // ConfirmInfoBarDelegate: |
| 80 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; | 106 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; |
| 81 gfx::Image GetIcon() const override; | 107 gfx::Image GetIcon() const override; |
| 82 void InfoBarDismissed() override; | 108 void InfoBarDismissed() override; |
| 83 base::string16 GetMessageText() const override; | 109 base::string16 GetMessageText() const override; |
| 84 int GetButtons() const override; | 110 int GetButtons() const override; |
| 85 bool Accept() override; | 111 bool Accept() override; |
| 86 bool LinkClicked(WindowOpenDisposition disposition) override; | 112 bool LinkClicked(WindowOpenDisposition disposition) override; |
| 87 | 113 |
| 88 base::android::ScopedJavaGlobalRef<jobject> java_delegate_; | 114 base::android::ScopedJavaGlobalRef<jobject> java_delegate_; |
| 89 | 115 |
| 90 // Used to fetch the splash screen icon for webapps. | 116 // Used to fetch the splash screen icon for webapps. |
| 91 base::WeakPtr<AppBannerManager> weak_manager_; | 117 base::WeakPtr<AppBannerManager> weak_manager_; |
| 92 | 118 |
| 93 base::string16 app_title_; | 119 base::string16 app_title_; |
| 94 GURL manifest_url_; | 120 std::unique_ptr<ShortcutInfo> shortcut_info_; |
| 95 content::Manifest manifest_; | |
| 96 | 121 |
| 97 base::android::ScopedJavaGlobalRef<jobject> native_app_data_; | 122 base::android::ScopedJavaGlobalRef<jobject> native_app_data_; |
| 98 | 123 |
| 99 GURL icon_url_; | |
| 100 std::unique_ptr<SkBitmap> icon_; | 124 std::unique_ptr<SkBitmap> icon_; |
| 101 | 125 |
| 102 std::string native_app_package_; | 126 std::string native_app_package_; |
| 103 std::string referrer_; | 127 std::string referrer_; |
| 104 int event_request_id_; | 128 int event_request_id_; |
| 105 bool has_user_interaction_; | 129 bool has_user_interaction_; |
| 106 | 130 |
| 107 std::string webapk_package_name_; | 131 std::string webapk_package_name_; |
| 108 bool is_webapk_; | 132 bool is_webapk_; |
| 109 | 133 |
| 110 base::WeakPtrFactory<AppBannerInfoBarDelegateAndroid> weak_ptr_factory_; | 134 base::WeakPtrFactory<AppBannerInfoBarDelegateAndroid> weak_ptr_factory_; |
| 111 | 135 |
| 112 DISALLOW_COPY_AND_ASSIGN(AppBannerInfoBarDelegateAndroid); | 136 DISALLOW_COPY_AND_ASSIGN(AppBannerInfoBarDelegateAndroid); |
| 113 }; // AppBannerInfoBarDelegateAndroid | 137 }; |
| 114 | 138 |
| 115 // Register native methods. | 139 // Register native methods. |
| 116 bool RegisterAppBannerInfoBarDelegateAndroid(JNIEnv* env); | 140 bool RegisterAppBannerInfoBarDelegateAndroid(JNIEnv* env); |
| 117 | 141 |
| 118 } // namespace banners | 142 } // namespace banners |
| 119 | 143 |
| 120 #endif // CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_INFOBAR_DELEGATE_ANDROID_H_ | 144 #endif // CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_INFOBAR_DELEGATE_ANDROID_H_ |
| OLD | NEW |