blob: fe1612c13918efbefe4568bc12a996d8f796f591 (
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
48
49
50
51
52
53
|
// 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.
#ifndef CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_
#define CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_
#include <stdint.h>
#include "base/strings/string16.h"
#include "content/public/common/manifest.h"
#include "third_party/WebKit/public/platform/modules/screen_orientation/WebScreenOrientationLockType.h"
#include "url/gurl.h"
// Information needed to create a shortcut via ShortcutHelper.
struct ShortcutInfo {
// This enum is used to back a UMA histogram, and must be treated as
// append-only.
// A Java counterpart will be generated for this enum.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.chrome.browser
// GENERATED_JAVA_CLASS_NAME_OVERRIDE: ShortcutSource
enum Source {
SOURCE_UNKNOWN = 0,
SOURCE_ADD_TO_HOMESCREEN = 1,
SOURCE_APP_BANNER = 2,
SOURCE_BOOKMARK_NAVIGATOR_WIDGET = 3,
SOURCE_BOOKMARK_SHORTCUT_WIDGET = 4,
SOURCE_COUNT = 5
};
explicit ShortcutInfo(const GURL& shortcut_url);
~ShortcutInfo();
// Updates the info based on the given |manifest|.
void UpdateFromManifest(const content::Manifest& manifest);
// Updates the source of the shortcut.
void UpdateSource(const Source source);
GURL url;
base::string16 user_title;
base::string16 name;
base::string16 short_name;
blink::WebDisplayMode display;
blink::WebScreenOrientationLockType orientation;
Source source;
int64_t theme_color;
int64_t background_color;
bool is_icon_generated;
};
#endif // CHROME_BROWSER_ANDROID_SHORTCUT_INFO_H_
|