Chromium Code Reviews| Index: chrome/browser/android/shortcut_info.cc |
| diff --git a/chrome/browser/android/shortcut_info.cc b/chrome/browser/android/shortcut_info.cc |
| index bb19d64d3a839288ad2efd05bd3ac07502b104cf..85a7e0037ae1597c300d7e8aedae65e7e4af468f 100644 |
| --- a/chrome/browser/android/shortcut_info.cc |
| +++ b/chrome/browser/android/shortcut_info.cc |
| @@ -40,10 +40,7 @@ void ShortcutInfo::UpdateFromManifest(const content::Manifest& manifest) { |
| if (manifest.display != blink::WebDisplayModeUndefined) |
| display = manifest.display; |
| - // 'fullscreen' and 'minimal-ui' are not yet supported, fallback to the right |
| - // mode in those cases. |
| - if (manifest.display == blink::WebDisplayModeFullscreen) |
| - display = blink::WebDisplayModeStandalone; |
| + // 'minimal-ui' is not yet supported, so fallback in this case. |
|
mlamouri (slow - plz ping)
2016/05/11 10:18:57
Can you point to the minimal-ui BUG?
|
| if (manifest.display == blink::WebDisplayModeMinimalUi) |
| display = blink::WebDisplayModeBrowser; |