| 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.content_shell_apk"> | |
| 11 | |
| 12 <permission android:name="org.chromium.content_shell.permission.SANDBOX" | |
| 13 android:protectionLevel="signature" /> | |
| 14 | |
| 15 <application android:name="ContentShellApplication" | |
| 16 android:label="ContentShell"> | |
| 17 <activity android:name="ContentShellActivity" | |
| 18 android:launchMode="singleTask" | |
| 19 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | |
| 20 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | |
| 21 android:hardwareAccelerated="true"> | |
| 22 <intent-filter> | |
| 23 <action android:name="android.intent.action.MAIN"/> | |
| 24 <category android:name="android.intent.category.LAUNCHER"/> | |
| 25 </intent-filter> | |
| 26 </activity> | |
| 27 <!-- The following service entries exist in order to allow us to | |
| 28 start more than one sandboxed process. --> | |
| 29 | |
| 30 <!-- NOTE: If you change the values of "android:process" for any of the
below services, | |
| 31 you also need to update kHelperProcessExecutableName in chrome_cons
tants.cc. --> | |
| 32 <service android:name="org.chromium.content.app.SandboxedProcessService0
" | |
| 33 android:process=":sandboxed_process0" | |
| 34 android:permission="org.chromium.content_shell.permission.SANDB
OX" | |
| 35 android:isolatedProcess="true" | |
| 36 android:exported="false" /> | |
| 37 <service android:name="org.chromium.content.app.SandboxedProcessService1
" | |
| 38 android:process=":sandboxed_process1" | |
| 39 android:permission="org.chromium.content_shell.permission.SANDB
OX" | |
| 40 android:isolatedProcess="true" | |
| 41 android:exported="false" /> | |
| 42 <service android:name="org.chromium.content.app.SandboxedProcessService2
" | |
| 43 android:process=":sandboxed_process2" | |
| 44 android:permission="org.chromium.content_shell.permission.SANDB
OX" | |
| 45 android:isolatedProcess="true" | |
| 46 android:exported="false" /> | |
| 47 <service android:name="org.chromium.content.app.SandboxedProcessService3
" | |
| 48 android:process=":sandboxed_process3" | |
| 49 android:permission="org.chromium.content_shell.permission.SANDB
OX" | |
| 50 android:isolatedProcess="true" | |
| 51 android:exported="false" /> | |
| 52 <service android:name="org.chromium.content.app.SandboxedProcessService4
" | |
| 53 android:process=":sandboxed_process4" | |
| 54 android:permission="org.chromium.content_shell.permission.SANDB
OX" | |
| 55 android:isolatedProcess="true" | |
| 56 android:exported="false" /> | |
| 57 <service android:name="org.chromium.content.app.SandboxedProcessService5
" | |
| 58 android:process=":sandboxed_process5" | |
| 59 android:permission="org.chromium.content_shell.permission.SANDB
OX" | |
| 60 android:isolatedProcess="true" | |
| 61 android:exported="false" /> | |
| 62 </application> | |
| 63 | |
| 64 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" /> | |
| 65 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | |
| 66 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | |
| 67 <uses-permission android:name="android.permission.INTERNET"/> | |
| 68 <uses-permission android:name="android.permission.VIBRATE"/> | |
| 69 <uses-permission android:name="android.permission.READ_PHONE_STATE"/> | |
| 70 <uses-permission android:name="android.permission.WAKE_LOCK"/> | |
| 71 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
| 72 </manifest> | |
| OLD | NEW |