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

Unified Diff: android_webview/apk/java/AndroidManifest.xml

Issue 2083673002: [NOT FOR COMMIT] multiple_renderer Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 5 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
« no previous file with comments | « no previous file | android_webview/lib/main/aw_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/apk/java/AndroidManifest.xml
diff --git a/android_webview/apk/java/AndroidManifest.xml b/android_webview/apk/java/AndroidManifest.xml
index b46f5236366b71741ddc109e924f8c551dcd02ee..e278d56c8aae09f4d914ac83ad23de9029abb71a 100644
--- a/android_webview/apk/java/AndroidManifest.xml
+++ b/android_webview/apk/java/AndroidManifest.xml
@@ -37,13 +37,37 @@
{% endmacro %}
{{ common(package|default('com.android.webview'), 'libwebviewchromium.so') }}
<meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES"
- android:value="1"/>
+ android:value="5"/>
<service android:name="org.chromium.content.app.SandboxedProcessService0"
android:process=":sandboxed_process0"
android:isolatedProcess="true"
android:exported="true"
tools:ignore="ExportedService"
{{sandboxed_service_extra_flags|default('')}} />
+ <service android:name="org.chromium.content.app.SandboxedProcessService1"
+ android:process=":sandboxed_process1"
+ android:isolatedProcess="true"
+ android:exported="true"
+ tools:ignore="ExportedService"
+ {{sandboxed_service_extra_flags|default('')}} />
+ <service android:name="org.chromium.content.app.SandboxedProcessService2"
+ android:process=":sandboxed_process2"
+ android:isolatedProcess="true"
+ android:exported="true"
+ tools:ignore="ExportedService"
+ {{sandboxed_service_extra_flags|default('')}} />
+ <service android:name="org.chromium.content.app.SandboxedProcessService3"
+ android:process=":sandboxed_process3"
+ android:isolatedProcess="true"
+ android:exported="true"
+ tools:ignore="ExportedService"
+ {{sandboxed_service_extra_flags|default('')}} />
+ <service android:name="org.chromium.content.app.SandboxedProcessService4"
+ android:process=":sandboxed_process4"
+ android:isolatedProcess="true"
+ android:exported="true"
+ tools:ignore="ExportedService"
+ {{sandboxed_service_extra_flags|default('')}} />
<meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICES"
android:value="0"/>
</application>
« no previous file with comments | « no previous file | android_webview/lib/main/aw_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698