Chromium Code Reviews| Index: components/favicon_base/favicon_types.h |
| diff --git a/components/favicon_base/favicon_types.h b/components/favicon_base/favicon_types.h |
| index 47c63aeb6fa0aca7d02999e5c5db8b622e90b4bc..2f8aa8750a44700ceae5e8f0389122c62b50d093 100644 |
| --- a/components/favicon_base/favicon_types.h |
| +++ b/components/favicon_base/favicon_types.h |
| @@ -23,13 +23,13 @@ typedef int64_t FaviconID; |
| // Defines the icon types. They are also stored in icon_type field of favicons |
| // table. |
| // The values of the IconTypes are used to select the priority in which favicon |
| -// data is returned in HistoryBackend and ThumbnailDatabase. Data for the |
| -// largest IconType takes priority if data for multiple IconTypes is available. |
|
pkotwicz
2017/05/24 14:27:44
Thank you for cleaning up the comment!
|
| +// data is returned in HistoryBackend and ThumbnailDatabase. |
| enum IconType { |
| INVALID_ICON = 0x0, |
| FAVICON = 1 << 0, |
| TOUCH_ICON = 1 << 1, |
| - TOUCH_PRECOMPOSED_ICON = 1 << 2 |
| + TOUCH_PRECOMPOSED_ICON = 1 << 2, |
| + WEB_MANIFEST_ICON = 1 << 3 |
| }; |
| // Defines a gfx::Image of size desired_size_in_dip composed of image |