| Index: chrome/browser/banners/app_banner_manager.h
|
| diff --git a/chrome/browser/banners/app_banner_manager.h b/chrome/browser/banners/app_banner_manager.h
|
| index c11b4cb121197f0d7ab9d69e51142e5c318522aa..7152aaed4edb2a757605464edf5caa675b4d6f9c 100644
|
| --- a/chrome/browser/banners/app_banner_manager.h
|
| +++ b/chrome/browser/banners/app_banner_manager.h
|
| @@ -39,6 +39,10 @@ class AppBannerManager : public content::WebContentsObserver,
|
| // Returns whether or not the URLs match for everything except for the ref.
|
| static bool URLsAreForTheSamePage(const GURL& first, const GURL& second);
|
|
|
| + void TriggerAppBannerFetch(content::RenderFrameHost* render_frame_host,
|
| + const GURL& validated_url,
|
| + bool is_debug_mode);
|
| +
|
| AppBannerManager();
|
| ~AppBannerManager() override;
|
|
|
| @@ -49,7 +53,8 @@ class AppBannerManager : public content::WebContentsObserver,
|
|
|
| // Creates an AppBannerDataFetcher, which constructs an app banner.
|
| virtual AppBannerDataFetcher* CreateAppBannerDataFetcher(
|
| - base::WeakPtr<AppBannerDataFetcher::Delegate> weak_delegate) = 0;
|
| + base::WeakPtr<AppBannerDataFetcher::Delegate> weak_delegate,
|
| + bool is_debug_mode) = 0;
|
|
|
| // Return whether the AppBannerDataFetcher is active.
|
| bool IsFetcherActive();
|
|
|