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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 android:theme="@android:style/Theme.Translucent.NoTitleBar" | 603 android:theme="@android:style/Theme.Translucent.NoTitleBar" |
604 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > | 604 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > |
605 </activity> | 605 </activity> |
606 | 606 |
607 <!-- Service for Broadcasting a Physical Web URL --> | 607 <!-- Service for Broadcasting a Physical Web URL --> |
608 <service | 608 <service |
609 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro
adcastService" | 609 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro
adcastService" |
610 android:exported="false"> | 610 android:exported="false"> |
611 </service> | 611 </service> |
612 | 612 |
613 <!-- Service for decoding images in a sandboxed process. --> | |
614 <service | |
615 android:description="@string/decoder_description" | |
616 android:name="org.chromium.chrome.browser.photo_picker.DecoderServic
e" | |
617 android:exported="false" | |
618 android:isolatedProcess="true" | |
619 android:process=":decoder_service" /> | |
620 | |
621 <!-- Providers for chrome data. --> | 613 <!-- Providers for chrome data. --> |
622 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" | 614 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" |
623 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" | 615 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" |
624 android:exported="true"> | 616 android:exported="true"> |
625 <path-permission android:path="/bookmarks/search_suggest_query" | 617 <path-permission android:path="/bookmarks/search_suggest_query" |
626 android:readPermission="android.permission.GLOBAL_SEARCH" /> | 618 android:readPermission="android.permission.GLOBAL_SEARCH" /> |
627 </provider> | 619 </provider> |
628 | 620 |
629 <!-- Provider for FileProvider. --> | 621 <!-- Provider for FileProvider. --> |
630 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi
der" | 622 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi
der" |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 953 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
962 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 954 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
963 The downstream manifest replaces this block, and hence replaces the
list of media route | 955 The downstream manifest replaces this block, and hence replaces the
list of media route |
964 controllers with its own list. --> | 956 controllers with its own list. --> |
965 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 957 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
966 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 958 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
967 | 959 |
968 {% endblock %} | 960 {% endblock %} |
969 </application> | 961 </application> |
970 </manifest> | 962 </manifest> |
OLD | NEW |