| 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 19 matching lines...) Expand all Loading... |
| 30 <category android:name="android.intent.category.DEFAULT" /> | 30 <category android:name="android.intent.category.DEFAULT" /> |
| 31 </intent-filter> | 31 </intent-filter> |
| 32 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CO
NTROLLED" | 32 <meta-data android:name="com.android.settings.PRIMARY_PROFILE_CO
NTROLLED" |
| 33 android:value="true" /> | 33 android:value="true" /> |
| 34 </activity> | 34 </activity> |
| 35 <provider android:name="com.android.webview.chromium.LicenseContentP
rovider" | 35 <provider android:name="com.android.webview.chromium.LicenseContentP
rovider" |
| 36 android:exported="true" | 36 android:exported="true" |
| 37 android:authorities="{{ manifest_package }}.LicenseContentPr
ovider" /> | 37 android:authorities="{{ manifest_package }}.LicenseContentPr
ovider" /> |
| 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" |
| 41 android:exported="true" |
| 42 android:process=":crash_receiver_service"/> |
| 43 <service android:name="org.chromium.android_webview.crash.MinidumpUp
loadJobService" |
| 44 android:permission="android.permission.BIND_JOB_SERVICE" |
| 45 android:exported="true" |
| 46 android:process=":crash_receiver_service"/> |
| 40 {% endmacro %} | 47 {% endmacro %} |
| 41 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so
') }} | 48 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so
') }} |
| 42 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" | 49 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV
ICES" |
| 43 android:value="1"/> | 50 android:value="1"/> |
| 44 <service android:name="org.chromium.content.app.SandboxedProcessService0
" | 51 <service android:name="org.chromium.content.app.SandboxedProcessService0
" |
| 45 android:process=":sandboxed_process0" | 52 android:process=":sandboxed_process0" |
| 46 android:isolatedProcess="true" | 53 android:isolatedProcess="true" |
| 47 android:exported="true" | 54 android:exported="true" |
| 48 android:externalService="true" | 55 android:externalService="true" |
| 49 tools:ignore="ExportedService" /> | 56 tools:ignore="ExportedService" /> |
| 50 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" | 57 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER
VICES" |
| 51 android:value="0"/> | 58 android:value="0"/> |
| 52 </application> | 59 </application> |
| 53 </manifest> | 60 </manifest> |
| OLD | NEW |