| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.chrome.browser.webapps; | 5 package org.chromium.chrome.browser.webapps; |
| 6 | 6 |
| 7 import java.util.Map; |
| 8 |
| 7 /** | 9 /** |
| 8 * Meta data from the WebAPK's Android Manifest. | 10 * Meta data from the WebAPK's Android Manifest. |
| 9 */ | 11 */ |
| 10 public class WebApkMetaData { | 12 public class WebApkMetaData { |
| 11 public int shellApkVersion; | 13 public int shellApkVersion; |
| 12 public String manifestUrl; | 14 public String manifestUrl; |
| 13 public String startUrl; | 15 public String startUrl; |
| 14 public String scope; | 16 public String scope; |
| 15 public String name; | 17 public String name; |
| 16 public String shortName; | 18 public String shortName; |
| 17 public int displayMode; | 19 public int displayMode; |
| 18 public int orientation; | 20 public int orientation; |
| 19 public long themeColor; | 21 public long themeColor; |
| 20 public long backgroundColor; | 22 public long backgroundColor; |
| 21 public int iconId; | 23 public int iconId; |
| 22 public String iconUrl; | 24 public Map<String, String> iconURLAndHashMap; |
| 23 public String iconMurmur2Hash; | |
| 24 } | 25 } |
| OLD | NEW |