| 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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 <service android:name="org.chromium.chrome.browser.crash.ChromeMinidumpU
ploadJobService" | 847 <service android:name="org.chromium.chrome.browser.crash.ChromeMinidumpU
ploadJobService" |
| 848 android:permission="android.permission.BIND_JOB_SERVICE" | 848 android:permission="android.permission.BIND_JOB_SERVICE" |
| 849 android:exported="false"/> | 849 android:exported="false"/> |
| 850 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS
ervice" | 850 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS
ervice" |
| 851 android:exported="false"/> | 851 android:exported="false"/> |
| 852 | 852 |
| 853 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" | 853 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" |
| 854 android:exported="false"/> | 854 android:exported="false"/> |
| 855 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo
tificationService" | 855 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo
tificationService" |
| 856 android:exported="false"/> | 856 android:exported="false"/> |
| 857 <service android:name="org.chromium.chrome.browser.webapps.WebApkDisclos
ureNotificationService" |
| 858 android:exported="false"/> |
| 857 | 859 |
| 858 | 860 |
| 859 <!-- The following service entries exist in order to allow us to | 861 <!-- The following service entries exist in order to allow us to |
| 860 start more than one sandboxed process. --> | 862 start more than one sandboxed process. --> |
| 861 | 863 |
| 862 <!-- NOTE: If you change the value of "android:process" for the below se
rvices, | 864 <!-- NOTE: If you change the value of "android:process" for the below se
rvices, |
| 863 you also need to update kHelperProcessExecutableName in chrome_cons
tants.cc. --> | 865 you also need to update kHelperProcessExecutableName in chrome_cons
tants.cc. --> |
| 864 {% set num_sandboxed_services = 20 %} | 866 {% set num_sandboxed_services = 20 %} |
| 865 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | 867 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" |
| 866 android:value="{{ num_sandboxed_services }}"/> | 868 android:value="{{ num_sandboxed_services }}"/> |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 1001 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 1000 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 1002 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 1001 The downstream manifest replaces this block, and hence replaces the
list of media route | 1003 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 1002 controllers with its own list. --> | 1004 controllers with its own list. --> |
| 1003 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 1005 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 1004 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 1006 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 1005 | 1007 |
| 1006 {% endblock %} | 1008 {% endblock %} |
| 1007 </application> | 1009 </application> |
| 1008 </manifest> | 1010 </manifest> |
| OLD | NEW |