| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ | |
| 6 #define CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ | |
| 7 | |
| 8 #include "base/android/jni_android.h" | |
| 9 #include "base/callback_forward.h" | |
| 10 #include "base/macros.h" | |
| 11 #include "chrome/browser/banners/app_banner_data_fetcher.h" | |
| 12 | |
| 13 namespace banners { | |
| 14 | |
| 15 // Fetches data required to show a banner for the URL currently shown by the | |
| 16 // WebContents. Extends the regular fetch to add support for Android apps. | |
| 17 class AppBannerDataFetcherAndroid : public AppBannerDataFetcher { | |
| 18 public: | |
| 19 AppBannerDataFetcherAndroid(content::WebContents* web_contents, | |
| 20 base::WeakPtr<Delegate> weak_delegate, | |
| 21 int ideal_icon_size_in_dp, | |
| 22 int minimum_icon_size_in_dp, | |
| 23 int ideal_splash_image_size_in_dp, | |
| 24 int minimum_splash_image_size_in_dp, | |
| 25 bool is_debug_mode); | |
| 26 | |
| 27 // Saves information about the Android app being promoted by the current page, | |
| 28 // then continues the creation pipeline. | |
| 29 bool ContinueFetching(const base::string16& app_title, | |
| 30 const std::string& app_package, | |
| 31 const base::android::JavaRef<jobject>& app_data, | |
| 32 const GURL& image_url); | |
| 33 | |
| 34 // Returns a callback which fetches the splash screen image and stores it in | |
| 35 // WebappDataStorage. | |
| 36 base::Closure FetchWebappSplashScreenImageCallback( | |
| 37 const std::string& webapp_id); | |
| 38 | |
| 39 protected: | |
| 40 ~AppBannerDataFetcherAndroid() override; | |
| 41 | |
| 42 std::string GetBannerType() override; | |
| 43 std::string GetAppIdentifier() override; | |
| 44 | |
| 45 private: | |
| 46 bool IsWebAppInstalled(content::BrowserContext* browser_context, | |
| 47 const GURL& start_url) override; | |
| 48 | |
| 49 void ShowBanner(const GURL& icon_url, | |
| 50 const SkBitmap* icon, | |
| 51 const base::string16& title, | |
| 52 const std::string& referrer) override; | |
| 53 | |
| 54 base::android::ScopedJavaGlobalRef<jobject> native_app_data_; | |
| 55 std::string native_app_package_; | |
| 56 | |
| 57 int ideal_splash_image_size_in_dp_; | |
| 58 int minimum_splash_image_size_in_dp_; | |
| 59 | |
| 60 DISALLOW_COPY_AND_ASSIGN(AppBannerDataFetcherAndroid); | |
| 61 }; | |
| 62 | |
| 63 } // namespace banners | |
| 64 | |
| 65 #endif // CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ | |
| OLD | NEW |