OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 | 4 |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 | 8 |
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
10 package="org.chromium.chrome.testshell"> | 10 package="org.chromium.chrome.testshell"> |
11 | 11 |
12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX" | 12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX" |
13 android:protectionLevel="signature" /> | 13 android:protectionLevel="signature" /> |
14 | 14 |
15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp
plication" | 15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp
plication" |
16 android:label="ChromiumTestShell" | 16 android:label="ChromiumTestShell"> |
17 android:debuggable="true"> | |
18 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA
ctivity" | 17 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA
ctivity" |
19 android:label="ChromiumTestShellActivity" | 18 android:label="ChromiumTestShellActivity" |
20 android:hardwareAccelerated="true"> | 19 android:hardwareAccelerated="true"> |
21 <intent-filter> | 20 <intent-filter> |
22 <action android:name="android.intent.action.MAIN" /> | 21 <action android:name="android.intent.action.MAIN" /> |
23 <category android:name="android.intent.category.LAUNCHER" /> | 22 <category android:name="android.intent.category.LAUNCHER" /> |
24 </intent-filter> | 23 </intent-filter> |
25 </activity> | 24 </activity> |
26 <!-- The following service entries exist in order to allow us to | 25 <!-- The following service entries exist in order to allow us to |
27 start more than one sandboxed process. --> | 26 start more than one sandboxed process. --> |
(...skipping 24 matching lines...) Expand all Loading... |
52 android:process=":sandboxed_process5" | 51 android:process=":sandboxed_process5" |
53 android:permission="org.chromium.content_shell.permission.SANDB
OX" | 52 android:permission="org.chromium.content_shell.permission.SANDB
OX" |
54 android:exported="false" /> | 53 android:exported="false" /> |
55 </application> | 54 </application> |
56 | 55 |
57 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> | 56 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> |
58 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | 57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
59 <uses-permission android:name="android.permission.INTERNET"/> | 58 <uses-permission android:name="android.permission.INTERNET"/> |
60 <uses-permission android:name="android.permission.WAKE_LOCK"/> | 59 <uses-permission android:name="android.permission.WAKE_LOCK"/> |
61 </manifest> | 60 </manifest> |
OLD | NEW |