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

Unified Diff: content/shell/android/AndroidManifest.xml

Issue 10546079: Added sandboxed process service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Init Created 8 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: content/shell/android/AndroidManifest.xml
diff --git a/content/shell/android/AndroidManifest.xml b/content/shell/android/AndroidManifest.xml
index 74a090f1a7b8d5156ed3b227ceafbdcc9ff4b94c..9a5fd67db1af690f5af872451d929a1cc47c01e8 100644
--- a/content/shell/android/AndroidManifest.xml
+++ b/content/shell/android/AndroidManifest.xml
@@ -24,8 +24,30 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
+ <!-- NOTE: If you change the values of "android:process" for any of the below services,
+ you also need to update kHelperProcessExecutableName in chrome_constants.cc. -->
+ <service android:name="org.chromium.content.app.SanboxedProcessService0"
+ android:process=":sandboxed_process0"
+ android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:exported="false" />
+ <service android:name="org.chromium.content.app.SanboxedProcessService1"
+ android:process=":sandboxed_process1"
+ android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:exported="false" />
+ <service android:name="org.chromium.content.app.SanboxedProcessService2"
+ android:process=":sandboxed_process2"
+ android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:exported="false" />
+ <service android:name="org.chromium.content.app.SanboxedProcessService3"
+ android:process=":sandboxed_process3"
+ android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:exported="false" />
+ <service android:name="org.chromium.content.app.SanboxedProcessService4"
+ android:process=":sandboxed_process4"
+ android:permission="org.chromium.content_shell.permission.SANDBOX"
+ android:exported="false" />
</application>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />
<uses-permission android:name="android.permission.INTERNET"/>
-</manifest>
+</manifest>

Powered by Google App Engine
This is Rietveld 408576698