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

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

Issue 10071032: RefCounted types should not have public destructors, chrome/browser/ part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/history/top_sites.cc
diff --git a/chrome/browser/history/top_sites.cc b/chrome/browser/history/top_sites.cc
index a95b71b66b54d019108f35b73202ef717e72f976..76a92d61f03a8144a2e6ed2d76b8629f34b25e9d 100644
--- a/chrome/browser/history/top_sites.cc
+++ b/chrome/browser/history/top_sites.cc
@@ -115,6 +115,8 @@ class LoadThumbnailsFromHistoryTask : public HistoryDBTask {
}
private:
+ virtual ~LoadThumbnailsFromHistoryTask() {}
+
bool ShouldFetchThumbnailFor(const GURL& url) {
return ignore_urls_.find(url.spec()) == ignore_urls_.end();
}

Powered by Google App Engine
This is Rietveld 408576698