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

Unified Diff: components/favicon_base/favicon_types.cc

Issue 2784233003: [LargeIconService] Allow decoding of images in the service (Closed)
Patch Set: Minor changes Created 3 years, 9 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..b03f0ecd4ae4330ef4bc176c0e7d31945c272ea9 100644
--- a/components/favicon_base/favicon_types.cc
+++ b/components/favicon_base/favicon_types.cc
@@ -38,4 +38,16 @@ LargeIconResult::LargeIconResult(FallbackIconStyle* fallback_icon_style_in)
LargeIconResult::~LargeIconResult() {}
+// --------------------------------------------------------
+// LargeIconImageResult
+
+LargeIconImageResult::LargeIconImageResult(const gfx::Image& image_in)
+ : image(image_in) {}
+
+LargeIconImageResult::LargeIconImageResult(
+ FallbackIconStyle* fallback_icon_style_in)
+ : fallback_icon_style(fallback_icon_style_in) {}
+
+LargeIconImageResult::~LargeIconImageResult() {}
+
} // namespace favicon_base
« components/favicon_base/favicon_types.h ('K') | « components/favicon_base/favicon_types.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698