Chromium Code Reviews| Index: chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/WebApkConstants.java |
| diff --git a/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/WebApkConstants.java b/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/WebApkConstants.java |
| index 53c2cb7926d8d91528425c43d0ac22f32a2cbdfb..bf5152d07de5390cc33353685089e026c1b3cc12 100644 |
| --- a/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/WebApkConstants.java |
| +++ b/chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/WebApkConstants.java |
| @@ -20,4 +20,8 @@ public final class WebApkConstants { |
| public static final String EXTRA_SOURCE = "org.chromium.chrome.browser.webapp_source"; |
| public static final String EXTRA_WEBAPK_PACKAGE_NAME = |
| "org.chromium.chrome.browser.webapk_package_name"; |
| + |
| + // We use ONE string to store all of the icon URLs in WebAPK's AndroidManifest.xml, and put a |
| + // separator between them. |
| + public static final String ICON_URL_SEPARATOR = "; "; |
|
pkotwicz
2016/11/01 00:29:49
Can the separator be just ' '?
I don't think that
Xi Han
2016/11/07 16:51:42
We definitely could only use a space, since space
|
| } |