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.content_shell"> | 10 package="org.chromium.content_shell"> |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 android:exported="false" /> | 49 android:exported="false" /> |
50 <service android:name="org.chromium.content.app.SandboxedProcessService4
" | 50 <service android:name="org.chromium.content.app.SandboxedProcessService4
" |
51 android:process=":sandboxed_process4" | 51 android:process=":sandboxed_process4" |
52 android:permission="org.chromium.content_shell.permission.SANDB
OX" | 52 android:permission="org.chromium.content_shell.permission.SANDB
OX" |
53 android:exported="false" /> | 53 android:exported="false" /> |
54 </application> | 54 </application> |
55 | 55 |
56 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" /> | 56 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" /> |
57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | 57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
58 <uses-permission android:name="android.permission.INTERNET"/> | 58 <uses-permission android:name="android.permission.INTERNET"/> |
| 59 <uses-permission android:name="android.permission.VIBRATE"/> |
59 <uses-permission android:name="android.permission.WAKE_LOCK"/> | 60 <uses-permission android:name="android.permission.WAKE_LOCK"/> |
60 </manifest> | 61 </manifest> |
OLD | NEW |