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..64e2e7677868c9938e6dcff288e965df1ed80ff0 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 |
| @@ -15,9 +15,12 @@ public final class WebApkConstants { |
| // These EXTRA_* values must stay in sync with |
| // {@link org.chromium.chrome.browser.ShortcutHelper}. |
| - public static final String EXTRA_ID = "org.chromium.chrome.browser.webapp_id"; |
| public static final String EXTRA_URL = "org.chromium.chrome.browser.webapp_url"; |
| 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"; |
| + // Whether the WebAPK should navigate to the URL in {@link EXTRA_URL} if the WebAPK is already |
| + // open. |
| + public static final String EXTRA_WEBAPK_NAVIGATE_IF_ALREADY_OPEN = |
| + "org.chromium.chrome.browser.webapk_navigate_if_already_open"; |
|
dominickn
2017/03/21 02:09:33
FORCE_NAVIGATION and webapk_force_navigation
|
| } |