blob: 24406b889b509c0ea2166e59a1eb8abb2dc9977f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/shortcut_info.h"
ShortcutInfo::ShortcutInfo()
: display(content::Manifest::DISPLAY_MODE_BROWSER),
orientation(blink::WebScreenOrientationLockDefault) {
}
ShortcutInfo::ShortcutInfo(const GURL& shortcut_url)
: url(shortcut_url),
display(content::Manifest::DISPLAY_MODE_BROWSER),
orientation(blink::WebScreenOrientationLockDefault) {
}
void ShortcutInfo::UpdateFromManifest(const content::Manifest& manifest) {
if (!manifest.short_name.is_null())
title = manifest.short_name.string();
else if (!manifest.name.is_null())
title = manifest.name.string();
// Set the url based on the manifest value, if any.
if (manifest.start_url.is_valid())
url = manifest.start_url;
// Set the display based on the manifest value, if any.
if (manifest.display != content::Manifest::DISPLAY_MODE_UNSPECIFIED)
display = manifest.display;
// 'fullscreen' and 'minimal-ui' are not yet supported, fallback to the right
// mode in those cases.
if (manifest.display == content::Manifest::DISPLAY_MODE_FULLSCREEN)
display = content::Manifest::DISPLAY_MODE_STANDALONE;
if (manifest.display == content::Manifest::DISPLAY_MODE_MINIMAL_UI)
display = content::Manifest::DISPLAY_MODE_BROWSER;
// Set the orientation based on the manifest value, if any.
if (manifest.orientation != blink::WebScreenOrientationLockDefault) {
// Ignore the orientation if the display mode is different from
// 'standalone'.
// TODO(mlamouri): send a message to the developer console about this.
if (display == content::Manifest::DISPLAY_MODE_STANDALONE)
orientation = manifest.orientation;
}
}
|