Move StartsWith[ASCII] to base namespace.
[chromium-blink-merge.git] / chrome / browser / banners / app_banner_manager_desktop.h
blobbe12de81b3cbc21022c7d8745c0b06c182f3c8a6
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 protected:
19 AppBannerDataFetcher* CreateAppBannerDataFetcher(
20 base::WeakPtr<AppBannerDataFetcher::Delegate> weak_delegate,
21 const int ideal_icon_size) override;
23 private:
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_