| 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();
|
|
|