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

Side by Side Diff: android_webview/apk/java/AndroidManifest.xml

Issue 2709403003: [Android Crash Reporting] Componentize MinidumpUploadJobService.java (Closed)
Patch Set: Init ContextUtils from Webview implemenation only 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 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
4 source code is governed by a BSD-style license that can be found in the 4 source code is governed by a BSD-style license that can be found in the
5 LICENSE file. 5 LICENSE file.
6 --> 6 -->
7 7
8 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 8 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
9 xmlns:tools="http://schemas.android.com/tools" 9 xmlns:tools="http://schemas.android.com/tools"
10 package="{{package|default('com.android.webview')}}"> 10 package="{{package|default('com.android.webview')}}">
(...skipping 23 matching lines...) Expand all
34 android:value="true" /> 34 android:value="true" />
35 </activity> 35 </activity>
36 <provider android:name="com.android.webview.chromium.LicenseContentP rovider" 36 <provider android:name="com.android.webview.chromium.LicenseContentP rovider"
37 android:exported="true" 37 android:exported="true"
38 android:authorities="{{ manifest_package }}.LicenseContentPr ovider" /> 38 android:authorities="{{ manifest_package }}.LicenseContentPr ovider" />
39 <meta-data android:name="com.android.webview.WebViewLibrary" 39 <meta-data android:name="com.android.webview.WebViewLibrary"
40 android:value="{{ webview_lib }}" /> 40 android:value="{{ webview_lib }}" />
41 <service android:name="org.chromium.android_webview.crash.CrashRecei verService" 41 <service android:name="org.chromium.android_webview.crash.CrashRecei verService"
42 android:exported="true" 42 android:exported="true"
43 android:process=":crash_receiver_service"/> 43 android:process=":crash_receiver_service"/>
44 <service android:name="org.chromium.android_webview.crash.MinidumpUp loadJobService" 44 <service android:name="org.chromium.android_webview.crash.AwMinidump UploadJobService"
45 android:permission="android.permission.BIND_JOB_SERVICE" 45 android:permission="android.permission.BIND_JOB_SERVICE"
46 android:exported="true" 46 android:exported="true"
47 android:process=":crash_receiver_service"/> 47 android:process=":crash_receiver_service"/>
48 {% endmacro %} 48 {% endmacro %}
49 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so ') }} 49 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so ') }}
50 {% set num_sandboxed_services = 20 %} 50 {% set num_sandboxed_services = 20 %}
51 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 51 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
52 android:value="{{ num_sandboxed_services }}"/> 52 android:value="{{ num_sandboxed_services }}"/>
53 {% for i in range(num_sandboxed_services) %} 53 {% for i in range(num_sandboxed_services) %}
54 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}" 54 <service android:name="org.chromium.content.app.SandboxedProcessService{ { i }}"
55 android:process=":sandboxed_process{{ i }}" 55 android:process=":sandboxed_process{{ i }}"
56 android:isolatedProcess="true" 56 android:isolatedProcess="true"
57 android:exported="true" 57 android:exported="true"
58 android:externalService="true" 58 android:externalService="true"
59 tools:ignore="ExportedService" /> 59 tools:ignore="ExportedService" />
60 {% endfor %} 60 {% endfor %}
61 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 61 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
62 android:value="0"/> 62 android:value="0"/>
63 </application> 63 </application>
64 </manifest> 64 </manifest>
OLDNEW
« no previous file with comments | « android_webview/BUILD.gn ('k') | android_webview/java/src/org/chromium/android_webview/crash/AwMinidumpUploadJobService.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698