Chromium Code Reviews| Index: components/favicon/content/favicon_url_util.cc |
| diff --git a/components/favicon/content/favicon_url_util.cc b/components/favicon/content/favicon_url_util.cc |
| index c77ff8b7808453325ec5446d51b8cb42206297e7..a0bb2065a902c25212dacc2186154dbd8e33c36f 100644 |
| --- a/components/favicon/content/favicon_url_util.cc |
| +++ b/components/favicon/content/favicon_url_util.cc |
| @@ -25,9 +25,10 @@ favicon_base::IconType IconTypeFromContentIconType( |
| return favicon_base::TOUCH_PRECOMPOSED_ICON; |
| case content::FaviconURL::INVALID_ICON: |
| return favicon_base::INVALID_ICON; |
| + default: |
|
dcheng
2017/06/06 20:01:30
Nit: prefer to keep this out of the switch stateme
Łukasz Anforowicz
2017/06/06 20:55:00
Thanks for bringing this up. I moved this in, bec
|
| + NOTREACHED(); |
| + return favicon_base::INVALID_ICON; |
| } |
| - NOTREACHED(); |
| - return favicon_base::INVALID_ICON; |
| } |
| } // namespace |