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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
761 android:exported="true" | 761 android:exported="true" |
762 tools:ignore="ExportedService"> | 762 tools:ignore="ExportedService"> |
763 <intent-filter> | 763 <intent-filter> |
764 <action android:name="android.support.customtabs.action.CustomTabs Service" /> | 764 <action android:name="android.support.customtabs.action.CustomTabs Service" /> |
765 </intent-filter> | 765 </intent-filter> |
766 </service> | 766 </service> |
767 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService" | 767 <service android:name="org.chromium.chrome.browser.crash.LogcatExtractio nService" |
768 android:exported="false"/> | 768 android:exported="false"/> |
769 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService" | 769 <service android:name="org.chromium.chrome.browser.crash.MinidumpPrepara tionService" |
770 android:exported="false"/> | 770 android:exported="false"/> |
771 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" | 771 <!-- TODO Could add a test to ensure you can start ChromeMinidumpUp loadService through startService... --> |
Ilya Sherman
2016/10/21 00:27:27
nit: Is this a TODO that you're intending to commi
gsennton
2016/10/21 13:43:32
I've added ChromeMinidumpUploadServiceTest now :).
| |
772 <service android:name="org.chromium.chrome.browser.crash.ChromeMinidumpU ploadService" | |
772 android:exported="false"/> | 773 android:exported="false"/> |
773 | 774 |
774 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" | 775 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" |
775 android:exported="false"/> | 776 android:exported="false"/> |
776 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService" | 777 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService" |
777 android:exported="false"/> | 778 android:exported="false"/> |
778 | 779 |
779 | 780 |
780 <!-- The following service entries exist in order to allow us to | 781 <!-- The following service entries exist in order to allow us to |
781 start more than one sandboxed process. --> | 782 start more than one sandboxed process. --> |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
913 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 914 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
914 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 915 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
915 The downstream manifest replaces this block, and hence replaces the list of media route | 916 The downstream manifest replaces this block, and hence replaces the list of media route |
916 controllers with its own list. --> | 917 controllers with its own list. --> |
917 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 918 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
918 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 919 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
919 | 920 |
920 {% endblock %} | 921 {% endblock %} |
921 </application> | 922 </application> |
922 </manifest> | 923 </manifest> |
OLD | NEW |