| 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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 android:theme="@style/PhysicalWebOptInStyle" | 523 android:theme="@style/PhysicalWebOptInStyle" |
| 524 android:exported="false"> | 524 android:exported="false"> |
| 525 </activity> | 525 </activity> |
| 526 | 526 |
| 527 <!-- Broadcast receiver that will clean up Physical web notifications at
scheduled | 527 <!-- Broadcast receiver that will clean up Physical web notifications at
scheduled |
| 528 intervals --> | 528 intervals --> |
| 529 <receiver android:name="org.chromium.chrome.browser.physicalweb.ClearNot
ificationAlarmReceiver" | 529 <receiver android:name="org.chromium.chrome.browser.physicalweb.ClearNot
ificationAlarmReceiver" |
| 530 android:exported="false"> | 530 android:exported="false"> |
| 531 </receiver> | 531 </receiver> |
| 532 | 532 |
| 533 <!-- Service for handling Nearby Messages --> |
| 534 <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMes
sageIntentService" |
| 535 android:exported="false" /> |
| 536 |
| 533 <!-- Providers for chrome data. --> | 537 <!-- Providers for chrome data. --> |
| 534 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" | 538 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" |
| 535 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" | 539 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" |
| 536 android:exported="true"> | 540 android:exported="true"> |
| 537 <path-permission android:path="/bookmarks/search_suggest_query" | 541 <path-permission android:path="/bookmarks/search_suggest_query" |
| 538 android:readPermission="android.permission.GLOBAL_SEARCH" /> | 542 android:readPermission="android.permission.GLOBAL_SEARCH" /> |
| 539 </provider> | 543 </provider> |
| 540 | 544 |
| 541 <!-- Provider for FileProvider. --> | 545 <!-- Provider for FileProvider. --> |
| 542 <provider android:name="org.chromium.chrome.browser.util.CompatibilityFi
leProvider" | 546 <provider android:name="org.chromium.chrome.browser.util.CompatibilityFi
leProvider" |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 858 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 855 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 859 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 856 The downstream manifest replaces this block, and hence replaces the
list of media route | 860 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 857 controllers with its own list. --> | 861 controllers with its own list. --> |
| 858 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 862 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 859 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 863 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 860 | 864 |
| 861 {% endblock %} | 865 {% endblock %} |
| 862 </application> | 866 </application> |
| 863 </manifest> | 867 </manifest> |
| OLD | NEW |