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

Unified Diff: chrome/browser/history/history_types.cc

Issue 10815068: Changes favicon database to support storing bitmaps of different sizes for the same icon_url (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/history/history_types.h ('k') | chrome/browser/history/thumbnail_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history_types.cc
diff --git a/chrome/browser/history/history_types.cc b/chrome/browser/history/history_types.cc
index abe58cb1753bed76c23e983cac8f44f36c1113b5..d1c572855c6783ccc47a081463b88c867ae94ffb 100644
--- a/chrome/browser/history/history_types.cc
+++ b/chrome/browser/history/history_types.cc
@@ -429,6 +429,7 @@ IconMapping::IconMapping()
IconMapping::~IconMapping() {}
+// FaviconData ----------------------------------------------------------------
FaviconData::FaviconData()
: known_icon(false),
@@ -442,4 +443,14 @@ bool FaviconData::is_valid() {
return known_icon && image_data.get() && image_data->size();
}
+// FaviconBitmap --------------------------------------------------------------
+
+FaviconBitmap::FaviconBitmap()
+ : bitmap_id(0),
+ icon_id(0) {
+}
+
+FaviconBitmap::~FaviconBitmap() {
+}
+
} // namespace history
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/thumbnail_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698