Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 | |
| 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 4 | |
| 5 Use of this source code is governed by a BSD-style license that can be | |
| 6 found in the LICENSE file. | |
| 7 --> | |
| 8 | |
| 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| 10 package="org.chromium.chrome.testshell"> | |
| 11 | |
| 12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX" | |
| 13 android:protectionLevel="signature" /> | |
| 14 | |
| 15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp plication" | |
| 16 android:label="ChromiumTestShell" | |
| 17 android:debuggable="true"> | |
| 18 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA ctivity" | |
| 19 android:label="ChromiumTestShellActivity" | |
| 20 android:hardwareAccelerated="true"> | |
| 21 <intent-filter> | |
| 22 <action android:name="android.intent.action.MAIN" /> | |
| 23 <category android:name="android.intent.category.FRAMEWORK_INST RUMENTATION_TEST" /> | |
| 24 </intent-filter> | |
| 25 </activity> | |
| 26 <!-- The following service entries exist in order to allow us to | |
| 27 start more than one sandboxed process. --> | |
| 28 | |
| 29 <!-- NOTE: If you change the values of "android:process" for any of the below services, | |
| 30 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. --> | |
| 31 <service android:name="org.chromium.content.app.SandboxedProcessService0 " | |
| 32 android:process=":sandboxed_process0" | |
| 33 android:permission="org.chromium.content_shell.permission.SANDB OX" | |
| 34 android:exported="false" /> | |
| 35 <service android:name="org.chromium.content.app.SandboxedProcessService1 " | |
| 36 android:process=":sandboxed_process1" | |
| 37 android:permission="org.chromium.content_shell.permission.SANDB OX" | |
| 38 android:exported="false" /> | |
| 39 <service android:name="org.chromium.content.app.SandboxedProcessService2 " | |
| 40 android:process=":sandboxed_process2" | |
| 41 android:permission="org.chromium.content_shell.permission.SANDB OX" | |
| 42 android:exported="false" /> | |
| 43 <service android:name="org.chromium.content.app.SandboxedProcessService3 " | |
| 44 android:process=":sandboxed_process3" | |
| 45 android:permission="org.chromium.content_shell.permission.SANDB OX" | |
| 46 android:exported="false" /> | |
| 47 <service android:name="org.chromium.content.app.SandboxedProcessService4 " | |
| 48 android:process=":sandboxed_process4" | |
| 49 android:permission="org.chromium.content_shell.permission.SANDB OX" | |
| 50 android:exported="false" /> | |
| 51 <service android:name="org.chromium.content.app.SandboxedProcessService5 " | |
| 52 android:process=":sandboxed_process5" | |
| 53 android:permission="org.chromium.content_shell.permission.SANDB OX" | |
| 54 android:exported="false" /> | |
| 55 </application> | |
| 56 | |
| 57 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16" /> | |
|
Yaron
2012/09/11 00:01:28
So why still 16?
David Trainor- moved to gerrit
2012/09/11 00:25:04
Done.
| |
| 58 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | |
| 59 <uses-permission android:name="android.permission.INTERNET"/> | |
| 60 <uses-permission android:name="android.permission.WAKE_LOCK"/> | |
| 61 </manifest> | |
| OLD | NEW |