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

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

Issue 2453423002: Send all of the icon URLs listed in Web Manifest to WebAPK Server. (Closed)
Patch Set: Remove best_icon_url and best_icon_hash from metadata, but add all icon urls and icon hashs in. Created 4 years, 1 month 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698