Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.chrome.browser.webapps; | |
| 6 | |
| 7 /** | |
| 8 * Meta data from the WebAPK's Android Manifest. | |
| 9 */ | |
| 10 public class WebApkMetaData { | |
| 11 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
| |
| 12 public String manifestUrl; | |
| 13 public String startUrl; | |
| 14 public String scope; | |
| 15 public String name; | |
| 16 public String shortName; | |
| 17 public int displayMode; | |
| 18 public int orientation; | |
| 19 public long themeColor; | |
| 20 public long backgroundColor; | |
| 21 public int iconId; | |
| 22 public String iconUrl; | |
| 23 public String iconMurmur2Hash; | |
| 24 } | |
| OLD | NEW |