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"
14 class AppBannerManagerDesktop
15 : public AppBannerManager
,
16 public content::WebContentsUserData
<AppBannerManagerDesktop
> {
19 AppBannerDataFetcher
* CreateAppBannerDataFetcher(
20 base::WeakPtr
<AppBannerDataFetcher::Delegate
> weak_delegate
,
21 const int ideal_icon_size
) override
;
24 explicit AppBannerManagerDesktop(content::WebContents
* web_contents
);
25 friend class content::WebContentsUserData
<AppBannerManagerDesktop
>;
27 DISALLOW_COPY_AND_ASSIGN(AppBannerManagerDesktop
);
30 } // namespace banners
32 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_