| 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..cadec49f4dbc9a148caa01c7d869fd0a708c1396 100644
|
| --- a/chrome/browser/android/shortcut_info.cc
|
| +++ b/chrome/browser/android/shortcut_info.cc
|
| @@ -40,10 +40,8 @@ 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.
|
| + // See crbug.com/604390.
|
| if (manifest.display == blink::WebDisplayModeMinimalUi)
|
| display = blink::WebDisplayModeBrowser;
|
|
|
|
|