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

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

Issue 10802066: Adds support for saving favicon size into history database. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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/select_favicon_frames.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 3a8f585d29bbdc516b39e89de962513e75154e78..7c67d0448517981c2a1eebcc2031d3a071c254db 100644
--- a/chrome/browser/history/history_types.cc
+++ b/chrome/browser/history/history_types.cc
@@ -416,11 +416,18 @@ FaviconImageResult::~FaviconImageResult() {
const FaviconSizes& GetDefaultFaviconSizes() {
CR_DEFINE_STATIC_LOCAL(FaviconSizes, kDefaultFaviconSizes, ());
- if (kDefaultFaviconSizes.empty())
- kDefaultFaviconSizes.push_back(gfx::Size());
return kDefaultFaviconSizes;
}
+// FaviconBitmapIDSize ---------------------------------------------------------
+
+FaviconBitmapIDSize::FaviconBitmapIDSize()
+ : bitmap_id(0) {
+}
+
+FaviconBitmapIDSize::~FaviconBitmapIDSize() {
+}
+
// FaviconBitmap --------------------------------------------------------------
FaviconBitmap::FaviconBitmap()
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/select_favicon_frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698