| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 package="org.chromium.chromecast.shell"> | 9 package="org.chromium.chromecast.shell"> |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 41 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
| 42 android:value="{{ num_privileged_services }}"/> | 42 android:value="{{ num_privileged_services }}"/> |
| 43 {% for i in range(num_privileged_services) %} | 43 {% for i in range(num_privileged_services) %} |
| 44 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" | 44 <service android:name="org.chromium.content.app.PrivilegedProcessService
{{ i }}" |
| 45 android:process=":privileged_process{{ i }}" | 45 android:process=":privileged_process{{ i }}" |
| 46 android:isolatedProcess="false" | 46 android:isolatedProcess="false" |
| 47 android:exported="false" /> | 47 android:exported="false" /> |
| 48 {% endfor %} | 48 {% endfor %} |
| 49 </application> | 49 </application> |
| 50 | 50 |
| 51 <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" /> | 51 <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="22" /> |
| 52 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | 52 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 53 <uses-permission android:name="android.permission.INTERNET"/> | 53 <uses-permission android:name="android.permission.INTERNET"/> |
| 54 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> | 54 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> |
| 55 <uses-permission android:name="android.permission.WAKE_LOCK"/> | 55 <uses-permission android:name="android.permission.WAKE_LOCK"/> |
| 56 | 56 |
| 57 </manifest> | 57 </manifest> |
| OLD | NEW |