Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkMetaData.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkMetaData.java b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkMetaData.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e3b1ea23e276926889542054d5f4c51166df8be2 |
| --- /dev/null |
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkMetaData.java |
| @@ -0,0 +1,24 @@ |
| +// Copyright 2016 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. |
| + |
| +package org.chromium.chrome.browser.webapps; |
| + |
| +/** |
| + * Meta data from the WebAPK's Android Manifest. |
| + */ |
| +public class WebApkMetaData { |
| + public int shellApkVersion; |
|
dominickn
2016/10/25 07:39:16
Having all the fields public and no constructor fo
|
| + public String manifestUrl; |
| + public String startUrl; |
| + public String scope; |
| + public String name; |
| + public String shortName; |
| + public int displayMode; |
| + public int orientation; |
| + public long themeColor; |
| + public long backgroundColor; |
| + public int iconId; |
| + public String iconUrl; |
| + public String iconMurmur2Hash; |
| +} |