| 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 android:exported="false" | 624 android:exported="false" |
| 625 android:theme="@android:style/Theme.NoDisplay" | 625 android:theme="@android:style/Theme.NoDisplay" |
| 626 android:noHistory="true" | 626 android:noHistory="true" |
| 627 android:excludeFromRecents="true"> | 627 android:excludeFromRecents="true"> |
| 628 </activity> | 628 </activity> |
| 629 | 629 |
| 630 <!-- Service for handling Nearby Messages --> | 630 <!-- Service for handling Nearby Messages --> |
| 631 <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMes
sageIntentService" | 631 <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMes
sageIntentService" |
| 632 android:exported="false" /> | 632 android:exported="false" /> |
| 633 | 633 |
| 634 <!-- This activity is to expose the PhysicalWeb Share option via the gen
eric Android share action. --> |
| 635 <activity |
| 636 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha
reActivity" |
| 637 android:icon="@drawable/physical_web_notification_large" |
| 638 android:label="@string/physical_web_share_activity_title" |
| 639 android:enabled="false" |
| 640 android:excludeFromRecents="true" |
| 641 android:noHistory="true" |
| 642 android:theme="@android:style/Theme.NoDisplay" |
| 643 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > |
| 644 <intent-filter> |
| 645 <action android:name="android.intent.action.SEND" /> |
| 646 <category android:name="android.intent.category.DEFAULT" /> |
| 647 <data android:mimeType="text/plain" /> |
| 648 </intent-filter> |
| 649 </activity> |
| 650 |
| 634 <!-- Providers for chrome data. --> | 651 <!-- Providers for chrome data. --> |
| 635 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" | 652 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" |
| 636 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" | 653 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" |
| 637 android:exported="true"> | 654 android:exported="true"> |
| 638 <path-permission android:path="/bookmarks/search_suggest_query" | 655 <path-permission android:path="/bookmarks/search_suggest_query" |
| 639 android:readPermission="android.permission.GLOBAL_SEARCH" /> | 656 android:readPermission="android.permission.GLOBAL_SEARCH" /> |
| 640 </provider> | 657 </provider> |
| 641 | 658 |
| 642 <!-- Provider for FileProvider. --> | 659 <!-- Provider for FileProvider. --> |
| 643 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi
der" | 660 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi
der" |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 950 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 934 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 951 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 935 The downstream manifest replaces this block, and hence replaces the
list of media route | 952 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 936 controllers with its own list. --> | 953 controllers with its own list. --> |
| 937 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 954 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 938 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 955 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 939 | 956 |
| 940 {% endblock %} | 957 {% endblock %} |
| 941 </application> | 958 </application> |
| 942 </manifest> | 959 </manifest> |
| OLD | NEW |