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

Unified Diff: chrome/android/webapk/shell_apk/AndroidManifest.xml

Issue 2049843004: Upstream: Renderers are running in WebAPKs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/shell_apk/AndroidManifest.xml
diff --git a/chrome/android/webapk/shell_apk/AndroidManifest.xml b/chrome/android/webapk/shell_apk/AndroidManifest.xml
index 68f9c309120cc13eaa76a5a6bac2996cf735ccef..23640818c2a0faf2e4f4dc05d7fe40c8e6542799 100644
--- a/chrome/android/webapk/shell_apk/AndroidManifest.xml
+++ b/chrome/android/webapk/shell_apk/AndroidManifest.xml
@@ -40,5 +40,19 @@
<category android:name="android.intent.category.WEBAPK_API" />
</intent-filter>
</service>
+ <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
+ android:value="3"/>
+ <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService0"
+ android:isolatedProcess="true"
+ android:process=":webapk_sandboxed_process0"
+ android:exported="true"/>
pkotwicz 2016/06/10 21:29:47 - Looking at chrome/android/java/AndroidManifest.x
Xi Han 2016/06/13 20:04:11 Add tools:ignore="ExportedService". Hmmm, if we s
pkotwicz 2016/06/14 01:19:48 I think that Chrome would have to declare the perm
Xi Han 2016/06/14 21:55:03 I think WebAPK will be signed by using Chromium ke
+ <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService1"
+ android:isolatedProcess="true"
+ android:process=":webapk_sandboxed_process1"
+ android:exported="true"/>
+ <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService2"
+ android:isolatedProcess="true"
+ android:process=":webapk_sandboxed_process2"
+ android:exported="true"/>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698