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

Unified Diff: components/history/core/browser/thumbnail_database.cc

Issue 1119163003: Save large icons to a new LARGE_ICON type Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix try bots Created 5 years, 8 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/history/core/browser/thumbnail_database.cc
diff --git a/components/history/core/browser/thumbnail_database.cc b/components/history/core/browser/thumbnail_database.cc
index 7fc68d43b7bb7e5437db4a18d79a51e88d223129..258a3b076bd2577c10dd1a0518c278f420311450 100644
--- a/components/history/core/browser/thumbnail_database.cc
+++ b/components/history/core/browser/thumbnail_database.cc
@@ -660,7 +660,7 @@ void ThumbnailDatabase::ComputeDatabaseMetrics() {
SQL_FROM_HERE,
"SELECT COUNT(*) FROM favicons WHERE icon_type IN (?, ?)"));
touch_icon_count.BindInt64(0, favicon_base::TOUCH_ICON);
- touch_icon_count.BindInt64(0, favicon_base::TOUCH_PRECOMPOSED_ICON);
+ touch_icon_count.BindInt64(1, favicon_base::TOUCH_PRECOMPOSED_ICON);
huangs 2015/05/04 05:17:30 This looks like an independent bug fix. I'd recomm
Roger McFarlane (Chromium) 2015/05/04 18:48:15 Moved to a separate CL. This is a new histogram I
UMA_HISTOGRAM_COUNTS_10000(
"History.NumTouchIconsInDB",
touch_icon_count.Step() ? touch_icon_count.ColumnInt(0) : 0);
« components/favicon_base/favicon_types.h ('K') | « components/history/core/browser/history_backend.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698