Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2778353002: [Merge] [Android Crash Reporting] Allow uploading minidumps via the JobScheduler (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 android:exported="true" 804 android:exported="true"
805 tools:ignore="ExportedService" /> 805 tools:ignore="ExportedService" />
806 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" 806 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService"
807 android:exported="true" 807 android:exported="true"
808 tools:ignore="ExportedService"> 808 tools:ignore="ExportedService">
809 <intent-filter> 809 <intent-filter>
810 <action android:name="android.support.customtabs.action.CustomTabs Service" /> 810 <action android:name="android.support.customtabs.action.CustomTabs Service" />
811 </intent-filter> 811 </intent-filter>
812 </service> 812 </service>
813 <service android:name="android.support.customtabs.PostMessageService" /> 813 <service android:name="android.support.customtabs.PostMessageService" />
814
815 <!-- Crash reporting services. -->
816 <service android:name="org.chromium.chrome.browser.crash.ChromeMinidumpU ploadJobService"
817 android:permission="android.permission.BIND_JOB_SERVICE"
818 android:exported="false"/>
814 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" 819 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice"
815 android:exported="false"/> 820 android:exported="false"/>
816 821
817 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" 822 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient"
818 android:exported="false"/> 823 android:exported="false"/>
819 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService" 824 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService"
820 android:exported="false"/> 825 android:exported="false"/>
821 826
822 827
823 <!-- The following service entries exist in order to allow us to 828 <!-- The following service entries exist in order to allow us to
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 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.
957 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.
958 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
959 controllers with its own list. --> 964 controllers with its own list. -->
960 <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"
961 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 966 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
962 967
963 {% endblock %} 968 {% endblock %}
964 </application> 969 </application>
965 </manifest> 970 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698