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

Unified Diff: components/favicon_base/favicon_types.cc

Issue 2685173002: Extend LargeIconService to fetch missing favicons from a Google server (Closed)
Patch Set: Peter's comments #2 (WIP) Created 3 years, 10 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
Index: components/favicon_base/favicon_types.cc
diff --git a/components/favicon_base/favicon_types.cc b/components/favicon_base/favicon_types.cc
index 8699c4387f4e85d79ee908b8dff3edccc52d268c..47b6b2a6e8cd6e8935e5621faec52d89745f9d60 100644
--- a/components/favicon_base/favicon_types.cc
+++ b/components/favicon_base/favicon_types.cc
@@ -33,8 +33,9 @@ FaviconRawBitmapResult::~FaviconRawBitmapResult() {}
LargeIconResult::LargeIconResult(const FaviconRawBitmapResult& bitmap_in)
: bitmap(bitmap_in) {}
-LargeIconResult::LargeIconResult(FallbackIconStyle* fallback_icon_style_in)
- : fallback_icon_style(fallback_icon_style_in) {}
+LargeIconResult::LargeIconResult(
+ std::unique_ptr<FallbackIconStyle> fallback_icon_style_in)
+ : fallback_icon_style(std::move(fallback_icon_style_in)) {}
LargeIconResult::~LargeIconResult() {}
« no previous file with comments | « components/favicon_base/favicon_types.h ('k') | ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698