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 |
613 <!-- Providers for chrome data. --> | 621 <!-- Providers for chrome data. --> |
614 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" | 622 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" |
615 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" | 623 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" |
616 android:exported="true"> | 624 android:exported="true"> |
617 <path-permission android:path="/bookmarks/search_suggest_query" | 625 <path-permission android:path="/bookmarks/search_suggest_query" |
618 android:readPermission="android.permission.GLOBAL_SEARCH" /> | 626 android:readPermission="android.permission.GLOBAL_SEARCH" /> |
619 </provider> | 627 </provider> |
620 | 628 |
621 <!-- Provider for FileProvider. --> | 629 <!-- Provider for FileProvider. --> |
622 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi
der" | 630 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi
der" |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 961 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
954 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 962 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
955 The downstream manifest replaces this block, and hence replaces the
list of media route | 963 The downstream manifest replaces this block, and hence replaces the
list of media route |
956 controllers with its own list. --> | 964 controllers with its own list. --> |
957 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 965 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
958 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 966 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
959 | 967 |
960 {% endblock %} | 968 {% endblock %} |
961 </application> | 969 </application> |
962 </manifest> | 970 </manifest> |
OLD | NEW |