| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_ | 5 #ifndef CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_ |
| 6 #define CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_ | 6 #define CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/banners/app_banner_manager.h" | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "chrome/browser/banners/app_banner_manager.h" |
| 11 #include "content/public/browser/web_contents_user_data.h" | 12 #include "content/public/browser/web_contents_user_data.h" |
| 12 | 13 |
| 13 namespace extensions { | 14 namespace extensions { |
| 14 class BookmarkAppHelper; | 15 class BookmarkAppHelper; |
| 15 } | 16 } |
| 16 | 17 |
| 17 namespace banners { | 18 namespace banners { |
| 18 | 19 |
| 19 // Manages web app banners for desktop platforms. | 20 // Manages web app banners for desktop platforms. |
| 20 class AppBannerManagerDesktop | 21 class AppBannerManagerDesktop |
| (...skipping 26 matching lines...) Expand all Loading... |
| 47 double score) override; | 48 double score) override; |
| 48 | 49 |
| 49 std::unique_ptr<extensions::BookmarkAppHelper> bookmark_app_helper_; | 50 std::unique_ptr<extensions::BookmarkAppHelper> bookmark_app_helper_; |
| 50 | 51 |
| 51 DISALLOW_COPY_AND_ASSIGN(AppBannerManagerDesktop); | 52 DISALLOW_COPY_AND_ASSIGN(AppBannerManagerDesktop); |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 } // namespace banners | 55 } // namespace banners |
| 55 | 56 |
| 56 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_ | 57 #endif // CHROME_BROWSER_BANNERS_APP_BANNER_MANAGER_DESKTOP_H_ |
| OLD | NEW |