| OLD | NEW |
| 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 27 matching lines...) Expand all Loading... |
| 38 <meta-data android:name="com.android.webview.WebViewLibrary" | 38 <meta-data android:name="com.android.webview.WebViewLibrary" |
| 39 android:value="{{ webview_lib }}" /> | 39 android:value="{{ webview_lib }}" /> |
| 40 <service android:name="org.chromium.android_webview.crash.CrashRecei
verService" | 40 <service android:name="org.chromium.android_webview.crash.CrashRecei
verService" |
| 41 android:exported="true" | 41 android:exported="true" |
| 42 android:process=":crash_receiver_service"/> | 42 android:process=":crash_receiver_service"/> |
| 43 <service android:name="org.chromium.android_webview.crash.MinidumpUp
loadJobService" | 43 <service android:name="org.chromium.android_webview.crash.MinidumpUp
loadJobService" |
| 44 android:permission="android.permission.BIND_JOB_SERVICE" | 44 android:permission="android.permission.BIND_JOB_SERVICE" |
| 45 android:exported="true" | 45 android:exported="true" |
| 46 android:process=":crash_receiver_service"/> | 46 android:process=":crash_receiver_service"/> |
| 47 {% endmacro %} | 47 {% endmacro %} |
| 48 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so
') }} | 48 {{ common(package|default('com.android.webview'), library|default('libwe
bviewchromium.so')) }} |
| 49 {% if donor_package is defined %} |
| 50 <meta-data android:name="com.android.webview.WebViewDonorPackage" |
| 51 android:value="{{ donor_package }}" /> |
| 52 {% endif %} |
| 49 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | 53 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" |
| 50 android:value="1"/> | 54 android:value="1"/> |
| 51 <service android:name="org.chromium.content.app.SandboxedProcessService0
" | 55 <service android:name="org.chromium.content.app.SandboxedProcessService0
" |
| 52 android:process=":sandboxed_process0" | 56 android:process=":sandboxed_process0" |
| 53 android:isolatedProcess="true" | 57 android:isolatedProcess="true" |
| 54 android:exported="true" | 58 android:exported="true" |
| 55 android:externalService="true" | 59 android:externalService="true" |
| 56 tools:ignore="ExportedService" /> | 60 tools:ignore="ExportedService" /> |
| 57 <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" |
| 58 android:value="0"/> | 62 android:value="0"/> |
| 59 </application> | 63 </application> |
| 60 </manifest> | 64 </manifest> |
| OLD | NEW |