| 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. |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 android:hardwareAccelerated="false"> | 279 android:hardwareAccelerated="false"> |
| 280 </activity> | 280 </activity> |
| 281 <service android:name="org.chromium.chrome.browser.upgrade.UpgradeIntent
Service" | 281 <service android:name="org.chromium.chrome.browser.upgrade.UpgradeIntent
Service" |
| 282 android:exported="false"/> | 282 android:exported="false"/> |
| 283 <receiver android:name="org.chromium.chrome.browser.upgrade.PackageRepla
cedBroadcastReceiver" | 283 <receiver android:name="org.chromium.chrome.browser.upgrade.PackageRepla
cedBroadcastReceiver" |
| 284 android:exported="false"> | 284 android:exported="false"> |
| 285 <intent-filter> | 285 <intent-filter> |
| 286 <action android:name="android.intent.action.MY_PACKAGE_REPLACED"
/> | 286 <action android:name="android.intent.action.MY_PACKAGE_REPLACED"
/> |
| 287 </intent-filter> | 287 </intent-filter> |
| 288 </receiver> | 288 </receiver> |
| 289 <receiver android:name="org.chromium.chrome.browser.upgrade.BootComplete
dBroadcastReceiver" |
| 290 android:exported="false"> |
| 291 <intent-filter> |
| 292 <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 293 </intent-filter> |
| 294 </receiver> |
| 289 | 295 |
| 290 <!-- Document mode Activities. --> | 296 <!-- Document mode Activities. --> |
| 291 <activity android:name="org.chromium.chrome.browser.document.DocumentAct
ivity" | 297 <activity android:name="org.chromium.chrome.browser.document.DocumentAct
ivity" |
| 292 android:exported="false" | 298 android:exported="false" |
| 293 android:theme="@style/MainTheme" | 299 android:theme="@style/MainTheme" |
| 294 android:taskAffinity="" | 300 android:taskAffinity="" |
| 295 android:persistableMode="persistAcrossReboots" | 301 android:persistableMode="persistAcrossReboots" |
| 296 android:autoRemoveFromRecents="false" | 302 android:autoRemoveFromRecents="false" |
| 297 {{ self.chrome_activity_common() }}> | 303 {{ self.chrome_activity_common() }}> |
| 298 </activity> | 304 </activity> |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 959 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 954 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 960 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 955 The downstream manifest replaces this block, and hence replaces the
list of media route | 961 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 956 controllers with its own list. --> | 962 controllers with its own list. --> |
| 957 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 963 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 958 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 964 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 959 | 965 |
| 960 {% endblock %} | 966 {% endblock %} |
| 961 </application> | 967 </application> |
| 962 </manifest> | 968 </manifest> |
| OLD | NEW |