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

Unified Diff: chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java

Issue 2193683003: Move WebAPK <meta-data> to org.chromium.webapk.shell_apk namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into meta_namespace Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/android/webapk/shell_apk/AndroidManifest.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
diff --git a/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java b/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
index ec62711714af20ccc812ef4aa1a0eeaa0b6e5e5d..d390db05d9b8f06aae9a1f914230264ae8986978 100644
--- a/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
+++ b/chrome/android/webapk/libs/runtime_library/src/org/chromium/webapk/lib/runtime_library/HostBrowserLauncher.java
@@ -26,16 +26,20 @@ import java.io.ByteArrayOutputStream;
* Launches Chrome in WebAPK mode.
*/
public class HostBrowserLauncher {
- private static final String META_DATA_RUNTIME_HOST = "runtimeHost";
- private static final String META_DATA_START_URL = "startUrl";
- private static final String META_DATA_NAME = "name";
- private static final String META_DATA_SCOPE = "scope";
- private static final String META_DATA_DISPLAY_MODE = "displayMode";
- private static final String META_DATA_ORIENTATION = "orientation";
- private static final String META_DATA_THEME_COLOR = "themeColor";
- private static final String META_DATA_BACKGROUND_COLOR = "backgroundColor";
- private static final String META_DATA_ICON_URL = "iconUrl";
- private static final String META_DATA_WEB_MANIFEST_URL = "webManifestUrl";
+ private static final String META_DATA_RUNTIME_HOST =
+ "org.chromium.webapk.shell_apk.runtimeHost";
+ private static final String META_DATA_START_URL = "org.chromium.webapk.shell_apk.startUrl";
+ private static final String META_DATA_NAME = "org.chromium.webapk.shell_apk.name";
+ private static final String META_DATA_SCOPE = "org.chromium.webapk.shell_apk.scope";
+ private static final String META_DATA_DISPLAY_MODE =
+ "org.chromium.webapk.shell_apk.displayMode";
+ private static final String META_DATA_ORIENTATION = "org.chromium.webapk.shell_apk.orientation";
+ private static final String META_DATA_THEME_COLOR = "org.chromium.webapk.shell_apk.themeColor";
+ private static final String META_DATA_BACKGROUND_COLOR =
+ "org.chromium.webapk.shell_apk.backgroundColor";
+ private static final String META_DATA_ICON_URL = "org.chromium.webapk.shell_apk.iconUrl";
+ private static final String META_DATA_WEB_MANIFEST_URL =
+ "org.chromium.webapk.shell_apk.webManifestUrl";
/**
* Key for passing app icon id in Bundle to {@link #launch()}.
« no previous file with comments | « no previous file | chrome/android/webapk/shell_apk/AndroidManifest.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698