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

Unified Diff: components/history/core/browser/history_types.h

Issue 2903573002: [Thumbnails DB] Add functionality to clear unused on-demand favicons. (Closed)
Patch Set: Another build fix Created 3 years, 5 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/history_types.h
diff --git a/components/history/core/browser/history_types.h b/components/history/core/browser/history_types.h
index 17b97b4a038eccc31009b293b75e9c50db378b6e..b8f3a6f6ffd5d621dd3a6d14a4826168901cea23 100644
--- a/components/history/core/browser/history_types.h
+++ b/components/history/core/browser/history_types.h
@@ -524,6 +524,16 @@ enum FaviconBitmapType {
ON_DEMAND
};
+// Defines all associated URLs of a favicon.
+struct FaviconURLs {
+ FaviconURLs();
+ FaviconURLs(const FaviconURLs& other);
+ ~FaviconURLs();
+
+ GURL icon_url;
+ std::vector<GURL> page_urls;
+};
+
// Defines a favicon bitmap stored in the history backend.
struct FaviconBitmap {
FaviconBitmap();

Powered by Google App Engine
This is Rietveld 408576698