Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/webapps/WebApkMetaData.java

Issue 2435383002: Update WebAPKs even if the WebAPK start URL has no Web Manifest part 1/3 (Closed)
Patch Set: Merge branch 'master' into update_fail0 Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698