| 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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 android:noHistory="true" | 646 android:noHistory="true" |
| 647 android:theme="@android:style/Theme.NoDisplay" | 647 android:theme="@android:style/Theme.NoDisplay" |
| 648 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > | 648 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > |
| 649 <intent-filter> | 649 <intent-filter> |
| 650 <action android:name="android.intent.action.SEND" /> | 650 <action android:name="android.intent.action.SEND" /> |
| 651 <category android:name="android.intent.category.DEFAULT" /> | 651 <category android:name="android.intent.category.DEFAULT" /> |
| 652 <data android:mimeType="text/plain" /> | 652 <data android:mimeType="text/plain" /> |
| 653 </intent-filter> | 653 </intent-filter> |
| 654 </activity> | 654 </activity> |
| 655 | 655 |
| 656 <!-- This activity is to expose the PhysicalWeb Share option via the gen
eric Android share action. --> |
| 657 <activity |
| 658 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha
reEntryActivity" |
| 659 android:label="@string/physical_web_share_entry_title" |
| 660 android:excludeFromRecents="true" |
| 661 android:noHistory="true" |
| 662 android:theme="@android:style/Theme.Translucent.NoTitleBar" |
| 663 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > |
| 664 </activity> |
| 665 |
| 656 <!-- Service for Broadcasting a Physical Web URL --> | 666 <!-- Service for Broadcasting a Physical Web URL --> |
| 657 <service | 667 <service |
| 658 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro
adcastService" | 668 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro
adcastService" |
| 659 android:exported="false"> | 669 android:exported="false"> |
| 660 </service> | 670 </service> |
| 661 | 671 |
| 662 <!-- Providers for chrome data. --> | 672 <!-- Providers for chrome data. --> |
| 663 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" | 673 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" |
| 664 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" | 674 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" |
| 665 android:exported="true"> | 675 android:exported="true"> |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 977 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 968 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 978 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 969 The downstream manifest replaces this block, and hence replaces the
list of media route | 979 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 970 controllers with its own list. --> | 980 controllers with its own list. --> |
| 971 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 981 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 972 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 982 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 973 | 983 |
| 974 {% endblock %} | 984 {% endblock %} |
| 975 </application> | 985 </application> |
| 976 </manifest> | 986 </manifest> |
| OLD | NEW |