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

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

Issue 2737263006: [Android Crash Reporting] Allow uploading minidumps via the JobScheduler (Closed)
Patch Set: Fully implemented, still needs tests Created 3 years, 9 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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
798 android:exported="true" 798 android:exported="true"
799 tools:ignore="ExportedService" /> 799 tools:ignore="ExportedService" />
800 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService" 800 <service android:name="org.chromium.chrome.browser.customtabs.CustomTabs ConnectionService"
801 android:exported="true" 801 android:exported="true"
802 tools:ignore="ExportedService"> 802 tools:ignore="ExportedService">
803 <intent-filter> 803 <intent-filter>
804 <action android:name="android.support.customtabs.action.CustomTabs Service" /> 804 <action android:name="android.support.customtabs.action.CustomTabs Service" />
805 </intent-filter> 805 </intent-filter>
806 </service> 806 </service>
807 <service android:name="android.support.customtabs.PostMessageService" /> 807 <service android:name="android.support.customtabs.PostMessageService" />
808
809 <!-- Crash reporting services. -->
810 <service android:name="org.chromium.chrome.browser.crash.ChromeMinidumpU ploadJobService"
811 android:permission="android.permission.BIND_JOB_SERVICE"
812 android:exported="false"/>
gsennton 2017/03/13 17:57:17 Note that the WebView-services are running in thei
Ilya Sherman 2017/03/14 02:18:55 Yeah, I did notice that. I'm not familiar enough
808 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" 813 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice"
809 android:exported="false"/> 814 android:exported="false"/>
810 815
811 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" 816 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient"
812 android:exported="false"/> 817 android:exported="false"/>
813 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService" 818 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService"
814 android:exported="false"/> 819 android:exported="false"/>
815 820
816 821
817 <!-- The following service entries exist in order to allow us to 822 <!-- The following service entries exist in order to allow us to
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 955 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
951 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
952 The downstream manifest replaces this block, and hence replaces the list of media route 957 The downstream manifest replaces this block, and hence replaces the list of media route
953 controllers with its own list. --> 958 controllers with its own list. -->
954 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
955 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
956 961
957 {% endblock %} 962 {% endblock %}
958 </application> 963 </application>
959 </manifest> 964 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698