| Index: content/public/common/favicon_url.h
|
| diff --git a/content/public/common/favicon_url.h b/content/public/common/favicon_url.h
|
| index 349fc8785ae43001126f51ad39024e25d911e21a..e9cec545b6f1ecf4038d8946ffec4dd6b3984e5a 100644
|
| --- a/content/public/common/favicon_url.h
|
| +++ b/content/public/common/favicon_url.h
|
| @@ -17,11 +17,12 @@ namespace content {
|
| struct CONTENT_EXPORT FaviconURL {
|
| // The icon type in a page. The definition must be same as
|
| // favicon_base::IconType.
|
| - enum IconType {
|
| - INVALID_ICON = 0x0,
|
| - FAVICON = 1 << 0,
|
| - TOUCH_ICON = 1 << 1,
|
| - TOUCH_PRECOMPOSED_ICON = 1 << 2
|
| + enum class IconType {
|
| + kInvalid,
|
| + kFavicon,
|
| + kTouchIcon,
|
| + kTouchPrecomposedIcon,
|
| + kMax = kTouchPrecomposedIcon,
|
| };
|
|
|
| FaviconURL();
|
|
|