| 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 | 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.shell"> | 10 package="org.chromium.chrome.shell"> |
| 11 | 11 |
| 12 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" /> | 12 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="22" /> |
| 13 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | 13 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> |
| 14 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | 14 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> |
| 15 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | 15 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 16 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> | 16 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> |
| 17 <uses-permission android:name="android.permission.CAMERA" /> | 17 <uses-permission android:name="android.permission.CAMERA" /> |
| 18 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> | 18 <uses-permission android:name="android.permission.GET_ACCOUNTS"/> |
| 19 <uses-permission android:name="android.permission.INTERNET"/> | 19 <uses-permission android:name="android.permission.INTERNET"/> |
| 20 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> | 20 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> |
| 21 <uses-permission android:name="android.permission.NFC"/> | 21 <uses-permission android:name="android.permission.NFC"/> |
| 22 <uses-permission android:name="android.permission.RECORD_AUDIO"/> | 22 <uses-permission android:name="android.permission.RECORD_AUDIO"/> |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 <!-- Media route controllers to use for remote playback (cast). | 221 <!-- Media route controllers to use for remote playback (cast). |
| 222 This is here, rather than in code, since it varies between upstream
and downstream, | 222 This is here, rather than in code, since it varies between upstream
and downstream, |
| 223 yet we need this list of classes in the notification service, which
belongs upstream | 223 yet we need this list of classes in the notification service, which
belongs upstream |
| 224 and doesn't run the downstream Clank startup code. The Cast code wi
ll, for each media element, | 224 and doesn't run the downstream Clank startup code. The Cast code wi
ll, for each media element, |
| 225 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 225 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 226 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones --> | 226 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones --> |
| 227 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 227 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 228 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 228 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 229 </application> | 229 </application> |
| 230 </manifest> | 230 </manifest> |
| OLD | NEW |