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/24 11:34:59
There are now a lot of very similar classes flying
pkotwicz
2016/10/24 16:03:43
In a follow up CL, I can merge this class with Fet
dominickn
2016/10/25 07:39:16
What about WebApkInfo? That means it mirrors Webap
pkotwicz
2016/10/26 01:53:29
WebApkInfo sounds good.
I am hesitant to make Web
dominickn
2016/10/26 02:04:56
You misunderstood me. I suggested having:
class W
pkotwicz
2016/10/26 03:57:01
That proposal sounds reasonable. I will do it in a
dominickn
2016/10/27 00:42:48
Great, thanks! It will help clean up a bunch of th
|
| + 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; |
| +} |