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

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

Issue 2083673002: [NOT FOR COMMIT] multiple_renderer Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 5 Created 4 years, 6 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
« no previous file with comments | « no previous file | android_webview/lib/main/aw_main_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 19 matching lines...) Expand all
30 android:value="true" /> 30 android:value="true" />
31 </activity> 31 </activity>
32 <provider android:name="com.android.webview.chromium.LicenseContentP rovider" 32 <provider android:name="com.android.webview.chromium.LicenseContentP rovider"
33 android:exported="true" 33 android:exported="true"
34 android:authorities="{{ manifest_package }}.LicenseContentPr ovider" /> 34 android:authorities="{{ manifest_package }}.LicenseContentPr ovider" />
35 <meta-data android:name="com.android.webview.WebViewLibrary" 35 <meta-data android:name="com.android.webview.WebViewLibrary"
36 android:value="{{ webview_lib }}" /> 36 android:value="{{ webview_lib }}" />
37 {% endmacro %} 37 {% endmacro %}
38 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so ') }} 38 {{ common(package|default('com.android.webview'), 'libwebviewchromium.so ') }}
39 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 39 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
40 android:value="1"/> 40 android:value="5"/>
41 <service android:name="org.chromium.content.app.SandboxedProcessService0 " 41 <service android:name="org.chromium.content.app.SandboxedProcessService0 "
42 android:process=":sandboxed_process0" 42 android:process=":sandboxed_process0"
43 android:isolatedProcess="true" 43 android:isolatedProcess="true"
44 android:exported="true" 44 android:exported="true"
45 tools:ignore="ExportedService" 45 tools:ignore="ExportedService"
46 {{sandboxed_service_extra_flags|default('')}} /> 46 {{sandboxed_service_extra_flags|default('')}} />
47 <service android:name="org.chromium.content.app.SandboxedProcessService1 "
48 android:process=":sandboxed_process1"
49 android:isolatedProcess="true"
50 android:exported="true"
51 tools:ignore="ExportedService"
52 {{sandboxed_service_extra_flags|default('')}} />
53 <service android:name="org.chromium.content.app.SandboxedProcessService2 "
54 android:process=":sandboxed_process2"
55 android:isolatedProcess="true"
56 android:exported="true"
57 tools:ignore="ExportedService"
58 {{sandboxed_service_extra_flags|default('')}} />
59 <service android:name="org.chromium.content.app.SandboxedProcessService3 "
60 android:process=":sandboxed_process3"
61 android:isolatedProcess="true"
62 android:exported="true"
63 tools:ignore="ExportedService"
64 {{sandboxed_service_extra_flags|default('')}} />
65 <service android:name="org.chromium.content.app.SandboxedProcessService4 "
66 android:process=":sandboxed_process4"
67 android:isolatedProcess="true"
68 android:exported="true"
69 tools:ignore="ExportedService"
70 {{sandboxed_service_extra_flags|default('')}} />
47 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES" 71 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SER VICES"
48 android:value="0"/> 72 android:value="0"/>
49 </application> 73 </application>
50 </manifest> 74 </manifest>
OLDNEW
« no previous file with comments | « no previous file | android_webview/lib/main/aw_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698