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

Side by Side Diff: chrome/browser/banners/app_banner_data_fetcher_desktop.h

Issue 1161233005: Implement app banner info bars on desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@stop-icon-overgeneration
Patch Set: Moving feature enabling to existing #ifs Created 5 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_BANNERS_APP_BANNER_DATA_FETCHER_DESKTOP_H_
6 #define CHROME_BROWSER_BANNERS_APP_BANNER_DATA_FETCHER_DESKTOP_H_
7
8 #include "chrome/browser/banners/app_banner_data_fetcher.h"
9
10 namespace extensions {
11 class BookmarkAppHelper;
12 class Extension;
13 } // namespace extensions
14
15 namespace banners {
16
17 // Fetches data required to show a banner for the URL currently shown by the
18 // WebContents. Extends the regular fetch to support desktop web apps.
19 class AppBannerDataFetcherDesktop : public AppBannerDataFetcher {
20 public:
21 AppBannerDataFetcherDesktop(content::WebContents* web_contents,
22 base::WeakPtr<Delegate> weak_delegate,
23 int ideal_icon_size);
24
25 void ShowBanner(const SkBitmap* icon, const base::string16& title) override;
26
27 // Callback for finishing bookmark app creation
28 void FinishCreateBookmarkApp(const extensions::Extension* extension,
29 const WebApplicationInfo& web_app_info);
30
31 protected:
32 ~AppBannerDataFetcherDesktop() override;
33
34 private:
35 scoped_ptr<extensions::BookmarkAppHelper> bookmark_app_helper_;
36
37 DISALLOW_COPY_AND_ASSIGN(AppBannerDataFetcherDesktop);
38 };
39
40 } // namespace banners
41
42 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_DATA_FETCHER_DESKTOP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698