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

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: Always check command line flags in getNum(Class)ofService(). 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 4fd67d74a7dae20eb21515c37ba8e2eaf508ff2d..7592063c46344536c38207a8d9b7785c229bec01 100644
--- a/chrome/android/webapk/shell_apk/AndroidManifest.xml
+++ b/chrome/android/webapk/shell_apk/AndroidManifest.xml
@@ -42,5 +42,24 @@
<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"/>
+ <meta-data android:name="org.chromium.content.browser.SANDBOXED_SERVICES_NAME"
+ android:value="org.chromium.webapk.lib.common.WebApkSandboxedProcessService"/>
+ <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService0"
+ android:isolatedProcess="true"
+ android:process=":webapk_sandboxed_process0"
+ android:exported="true"
+ tools:ignore="ExportedService"/>
+ <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService1"
+ android:isolatedProcess="true"
+ android:process=":webapk_sandboxed_process1"
+ android:exported="true"
+ tools:ignore="ExportedService"/>
+ <service android:name="org.chromium.webapk.lib.common.WebApkSandboxedProcessService2"
+ android:isolatedProcess="true"
+ android:process=":webapk_sandboxed_process2"
+ android:exported="true"
+ tools:ignore="ExportedService"/>
</application>
</manifest>

Powered by Google App Engine
This is Rietveld 408576698