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

Unified Diff: chrome/browser/ui/webui/large_icon_source.h

Issue 2885523002: Remove non-Android handling in LargeIconSource (Closed)
Patch Set: Merge branch 'master' into searchbox2 Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/browsing_history_handler.cc ('k') | chrome/browser/ui/webui/large_icon_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/large_icon_source.h
diff --git a/chrome/browser/ui/webui/large_icon_source.h b/chrome/browser/ui/webui/large_icon_source.h
index a7322df1cbf32a51cc2fa48d8d88e47d74ecc526..6d48d908b87ca272040199a5ca59bf3124963108 100644
--- a/chrome/browser/ui/webui/large_icon_source.h
+++ b/chrome/browser/ui/webui/large_icon_source.h
@@ -10,11 +10,9 @@
#include "base/macros.h"
#include "base/task/cancelable_task_tracker.h"
-#include "components/favicon/core/fallback_icon_service.h"
#include "content/public/browser/url_data_source.h"
namespace favicon {
-class FallbackIconService;
class LargeIconService;
}
@@ -37,10 +35,8 @@ struct LargeIconResult;
// This requests a 48x48 large icon for http://www.google.com.
class LargeIconSource : public content::URLDataSource {
public:
- // |fallback_icon_service| and |large_icon_service| are owned by caller and
- // may be null.
- LargeIconSource(favicon::FallbackIconService* fallback_icon_service,
- favicon::LargeIconService* large_icon_service);
+ // |large_icon_service| is owned by caller and may be null.
+ explicit LargeIconSource(favicon::LargeIconService* large_icon_service);
~LargeIconSource() override;
@@ -72,9 +68,6 @@ class LargeIconSource : public content::URLDataSource {
base::CancelableTaskTracker cancelable_task_tracker_;
// Owned by client.
- favicon::FallbackIconService* fallback_icon_service_;
-
- // Owned by client.
favicon::LargeIconService* large_icon_service_;
DISALLOW_COPY_AND_ASSIGN(LargeIconSource);
« no previous file with comments | « chrome/browser/ui/webui/browsing_history_handler.cc ('k') | chrome/browser/ui/webui/large_icon_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698