| Index: chrome/browser/android/shortcut_info.h
|
| diff --git a/chrome/browser/android/shortcut_info.h b/chrome/browser/android/shortcut_info.h
|
| index 2f4fbff6e8b3eb62d94e52c21eb8c86b6bd4ac9d..13b9d1b272e94a3e92347ae24f944d2489dfbc12 100644
|
| --- a/chrome/browser/android/shortcut_info.h
|
| +++ b/chrome/browser/android/shortcut_info.h
|
| @@ -29,6 +29,7 @@ struct ShortcutInfo {
|
|
|
| ShortcutInfo();
|
| explicit ShortcutInfo(const GURL& shortcut_url);
|
| + ~ShortcutInfo() = default;
|
|
|
| // Updates the info based on the given |manifest|.
|
| void UpdateFromManifest(const content::Manifest& manifest);
|
| @@ -37,7 +38,9 @@ struct ShortcutInfo {
|
| void UpdateSource(const Source source);
|
|
|
| GURL url;
|
| - base::string16 title;
|
| + base::string16 user_title;
|
| + base::string16 name;
|
| + base::string16 short_name;
|
| content::Manifest::DisplayMode display;
|
| blink::WebScreenOrientationLockType orientation;
|
| Source source;
|
|
|