| 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 android:theme="@style/PhysicalWebNearbyUrlsListStyle" | 443 android:theme="@style/PhysicalWebNearbyUrlsListStyle" |
| 444 android:autoRemoveFromRecents="true" | 444 android:autoRemoveFromRecents="true" |
| 445 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" | 445 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" |
| 446 android:exported="false" > | 446 android:exported="false" > |
| 447 </activity> | 447 </activity> |
| 448 | 448 |
| 449 <!-- Opt-in activity for Physical Web --> | 449 <!-- Opt-in activity for Physical Web --> |
| 450 <activity android:name="org.chromium.chrome.browser.physicalweb.Physical
WebOptInActivity" | 450 <activity android:name="org.chromium.chrome.browser.physicalweb.Physical
WebOptInActivity" |
| 451 android:label="@string/physical_web_list_urls_activity_title" | 451 android:label="@string/physical_web_list_urls_activity_title" |
| 452 android:theme="@style/PhysicalWebOptInStyle" | 452 android:theme="@style/PhysicalWebOptInStyle" |
| 453 android:autoRemoveFromRecents="true" | |
| 454 android:exported="false"> | 453 android:exported="false"> |
| 455 </activity> | 454 </activity> |
| 456 | 455 |
| 457 <!-- Broadcast receiver that will clean up Physical web notifications at
scheduled | 456 <!-- Broadcast receiver that will clean up Physical web notifications at
scheduled |
| 458 intervals --> | 457 intervals --> |
| 459 <receiver android:name="org.chromium.chrome.browser.physicalweb.ClearNot
ificationAlarmReceiver" | 458 <receiver android:name="org.chromium.chrome.browser.physicalweb.ClearNot
ificationAlarmReceiver" |
| 460 android:exported="false"> | 459 android:exported="false"> |
| 461 </receiver> | 460 </receiver> |
| 462 | 461 |
| 463 <!-- Providers for chrome data. --> | 462 <!-- Providers for chrome data. --> |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 798 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 800 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 799 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 801 The downstream manifest replaces this block, and hence replaces the
list of media route | 800 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 802 controllers with its own list. --> | 801 controllers with its own list. --> |
| 803 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 802 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 804 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 803 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 805 | 804 |
| 806 {% endblock %} | 805 {% endblock %} |
| 807 </application> | 806 </application> |
| 808 </manifest> | 807 </manifest> |
| OLD | NEW |