webapps: allow callers of icon downloader/selector to specify a minimum size
[chromium-blink-merge.git] / chrome / browser / banners / app_banner_manager_desktop.h
blob3db9508ac19ba5cf4011e9914c140c8762a77eef
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.
5 #ifndef CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_
6 #define CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_
8 #include "chrome/browser/banners/app_banner_manager.h"
10 #include "content/public/browser/web_contents_user_data.h"
12 namespace banners {
14 class AppBannerManagerDesktop
15 : public AppBannerManager,
16 public content::WebContentsUserData<AppBannerManagerDesktop> {
18 public:
19 static bool IsEnabled();
21 protected:
22 AppBannerDataFetcher* CreateAppBannerDataFetcher(
23 base::WeakPtr<AppBannerDataFetcher::Delegate> weak_delegate) override;
25 private:
26 explicit AppBannerManagerDesktop(content::WebContents* web_contents);
27 friend class content::WebContentsUserData<AppBannerManagerDesktop>;
29 DISALLOW_COPY_AND_ASSIGN(AppBannerManagerDesktop);
32 } // namespace banners
34 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_