| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 | 5 |
| 6 <!-- | 6 <!-- |
| 7 Note: This is a jinja2 template, processed at build time into the final manifest
. | 7 Note: This is a jinja2 template, processed at build time into the final manifest
. |
| 8 | 8 |
| 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden | 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden |
| 10 by a child template that "extends" this file. | 10 by a child template that "extends" this file. |
| 11 --> | 11 --> |
| 12 | 12 |
| 13 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 13 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 14 xmlns:tools="http://schemas.android.com/tools" | 14 xmlns:tools="http://schemas.android.com/tools" |
| 15 package="{{ manifest_package }}" | 15 package="{{ manifest_package }}" |
| 16 tools:ignore="MissingVersion"> | 16 tools:ignore="MissingVersion" |
| 17 android:sharedUserId="org.chromium.chrome" > |
| 17 <!-- android:versionCode and android:versionName is set through gyp. See bui
ld/common.gypi --> | 18 <!-- android:versionCode and android:versionName is set through gyp. See bui
ld/common.gypi --> |
| 18 | 19 |
| 19 <uses-sdk android:minSdkVersion="{{min_sdk_version}}" android:targetSdkVersi
on="{{target_sdk_version}}" /> | 20 <uses-sdk android:minSdkVersion="{{min_sdk_version}}" android:targetSdkVersi
on="{{target_sdk_version}}" /> |
| 20 <uses-feature android:glEsVersion="0x00020000" /> | 21 <uses-feature android:glEsVersion="0x00020000" /> |
| 21 | 22 |
| 22 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | 23 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> |
| 23 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | 24 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> |
| 24 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | 25 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 25 {% if channel in ['default'] %} | 26 {% if channel in ['default'] %} |
| 26 <uses-permission android:name="android.permission.BLUETOOTH"/> | 27 <uses-permission android:name="android.permission.BLUETOOTH"/> |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 621 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 621 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 622 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 622 The downstream manifest replaces this block, and hence replaces the
list of media route | 623 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 623 controllers with its own list. --> | 624 controllers with its own list. --> |
| 624 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 625 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 625 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 626 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 626 | 627 |
| 627 {% endblock %} | 628 {% endblock %} |
| 628 </application> | 629 </application> |
| 629 </manifest> | 630 </manifest> |
| OLD | NEW |