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

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..f797ed6fb764a8eeeac41affa4d34d4d332dd99e 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,10 @@ 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_WEBAPK_DISPLAY_MODE =
+ "org.chromium.webapk.lib.common.webapk_display_mode";
+ public static final String EXTRA_WEBAPK_ORIENTATION =
+ "org.chromium.webapk.lib.common.webapk_orientation";
}

Powered by Google App Engine
This is Rietveld 408576698