Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1996)

Unified Diff: chrome/browser/android/banners/app_banner_data_fetcher_android.cc

Issue 1569893003: Add "Request app banner" context menu in DevTools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporated pfeldman's comment Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/banners/app_banner_data_fetcher_android.cc
diff --git a/chrome/browser/android/banners/app_banner_data_fetcher_android.cc b/chrome/browser/android/banners/app_banner_data_fetcher_android.cc
index 873d31a02fea8f340f59f5b32119fc9b8de7ee98..e367f542212065c8ef1d501ea78b124744e2d118 100644
--- a/chrome/browser/android/banners/app_banner_data_fetcher_android.cc
+++ b/chrome/browser/android/banners/app_banner_data_fetcher_android.cc
@@ -23,14 +23,15 @@ AppBannerDataFetcherAndroid::AppBannerDataFetcherAndroid(
int ideal_icon_size_in_dp,
int minimum_icon_size_in_dp,
int ideal_splash_image_size_in_dp,
- int minimum_splash_image_size_in_dp)
+ int minimum_splash_image_size_in_dp,
+ bool is_debug_mode)
: AppBannerDataFetcher(web_contents,
weak_delegate,
ideal_icon_size_in_dp,
- minimum_icon_size_in_dp),
+ minimum_icon_size_in_dp,
+ is_debug_mode),
ideal_splash_image_size_in_dp_(ideal_splash_image_size_in_dp),
- minimum_splash_image_size_in_dp_(minimum_splash_image_size_in_dp) {
-}
+ minimum_splash_image_size_in_dp_(minimum_splash_image_size_in_dp) {}
AppBannerDataFetcherAndroid::~AppBannerDataFetcherAndroid() {
}

Powered by Google App Engine
This is Rietveld 408576698