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

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: Created 6 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: 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 4c8da6e737566dfb3dba7d7ccf6a5bedef7a4380..622b325d2c768cef079b2d9e7a9fcadd862e3c88 100644
--- a/chrome/browser/sync/glue/favicon_cache.cc
+++ b/chrome/browser/sync/glue/favicon_cache.cc
@@ -579,7 +579,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