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

Unified Diff: chrome/browser/sync/glue/favicon_cache.cc

Issue 235863023: Eliminate the archived history database and clean up related code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename a few outstanding instances of "archived" to "expired". Created 6 years, 6 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: chrome/browser/sync/glue/favicon_cache.cc
diff --git a/chrome/browser/sync/glue/favicon_cache.cc b/chrome/browser/sync/glue/favicon_cache.cc
index e64b24093dd8b4bc239775ac08047c60605074ff..e75d6a49d2f5d0da882e57e32b4eb3bbc1a52520 100644
--- a/chrome/browser/sync/glue/favicon_cache.cc
+++ b/chrome/browser/sync/glue/favicon_cache.cc
@@ -577,7 +577,7 @@ void FaviconCache::Observe(int type,
content::Details<history::URLsDeletedDetails> deleted_details(details);
// We only care about actual user (or sync) deletions.
- if (deleted_details->archived)
+ if (deleted_details->expired)
return;
if (!deleted_details->all_history) {

Powered by Google App Engine
This is Rietveld 408576698