| 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_DATA_FETCHER_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ |
| 6 #define CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ | 6 #define CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ |
| 7 | 7 |
| 8 #include "base/android/jni_android.h" | 8 #include "base/android/jni_android.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "chrome/browser/banners/app_banner_data_fetcher.h" | 10 #include "chrome/browser/banners/app_banner_data_fetcher.h" |
| 11 | 11 |
| 12 namespace banners { | 12 namespace banners { |
| 13 | 13 |
| 14 // Fetches data required to show a banner for the URL currently shown by the | 14 // Fetches data required to show a banner for the URL currently shown by the |
| 15 // WebContents. Extends the regular fetch to add support for Android apps. | 15 // WebContents. Extends the regular fetch to add support for Android apps. |
| 16 class AppBannerDataFetcherAndroid : public AppBannerDataFetcher { | 16 class AppBannerDataFetcherAndroid : public AppBannerDataFetcher { |
| 17 public: | 17 public: |
| 18 AppBannerDataFetcherAndroid( | 18 AppBannerDataFetcherAndroid(content::WebContents* web_contents, |
| 19 content::WebContents* web_contents, | 19 base::WeakPtr<Delegate> weak_delegate, |
| 20 base::WeakPtr<Delegate> weak_delegate, | 20 int ideal_icon_size_in_dp, |
| 21 int ideal_icon_size_in_dp, | 21 int minimum_icon_size_in_dp, |
| 22 int minimum_icon_size_in_dp, | 22 int ideal_splash_image_size_in_dp, |
| 23 int ideal_splash_image_size_in_dp, | 23 int minimum_splash_image_size_in_dp, |
| 24 int minimum_splash_image_size_in_dp); | 24 bool is_debug_mode); |
| 25 | 25 |
| 26 // Saves information about the Android app being promoted by the current page, | 26 // Saves information about the Android app being promoted by the current page, |
| 27 // then continues the creation pipeline. | 27 // then continues the creation pipeline. |
| 28 bool ContinueFetching(const base::string16& app_title, | 28 bool ContinueFetching(const base::string16& app_title, |
| 29 const std::string& app_package, | 29 const std::string& app_package, |
| 30 const base::android::JavaRef<jobject>& app_data, | 30 const base::android::JavaRef<jobject>& app_data, |
| 31 const GURL& image_url); | 31 const GURL& image_url); |
| 32 | 32 |
| 33 // Fetches the splash screen image and stores it in the WebappDataStorage. | 33 // Fetches the splash screen image and stores it in the WebappDataStorage. |
| 34 void FetchWebappSplashScreenImage(const std::string& webapp_id); | 34 void FetchWebappSplashScreenImage(const std::string& webapp_id); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 int ideal_splash_image_size_in_dp_; | 50 int ideal_splash_image_size_in_dp_; |
| 51 int minimum_splash_image_size_in_dp_; | 51 int minimum_splash_image_size_in_dp_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(AppBannerDataFetcherAndroid); | 53 DISALLOW_COPY_AND_ASSIGN(AppBannerDataFetcherAndroid); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace banners | 56 } // namespace banners |
| 57 | 57 |
| 58 #endif // CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ | 58 #endif // CHROME_BROWSER_ANDROID_BANNERS_APP_BANNER_DATA_FETCHER_ANDROID_H_ |
| OLD | NEW |