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

Unified Diff: chrome/android/webapk/libs/common/src/org/chromium/webapk/lib/common/WebApkConstants.java

Issue 2094903003: Pass all intent extras needed to render splash screen when launching WebAPK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into webapk_more_meta Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
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 df53f08564889883eeb81ebe6d6debe2c401f20e..ee0b1237fc950e03e4757c53fd7a2719514f12e6 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
@@ -12,4 +12,8 @@ public final class WebApkConstants {
// WebAPK id prefix. The id is used for storing WebAPK data in Chrome's SharedPreferences.
public static final String WEBAPK_ID_PREFIX = "webapk:";
+
+ // Used for sending Android Manifest properties to WebappLauncherActivity.
+ public static final String EXTRA_DISPLAY_MODE = "org.chromium.webapk.lib.common.display_mode";
dominickn 2016/06/28 05:26:55 Can we replace the EXTRA_ prefix? I can see potent
pkotwicz 2016/06/28 17:56:21 Ok renamed to EXTRA_WEBAPK_DISPLAY_MODE
+ public static final String EXTRA_ORIENTATION = "org.chromium.webapk.lib.common.orientation";
}

Powered by Google App Engine
This is Rietveld 408576698