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

Side by Side Diff: android_webview/test/shell/AndroidManifest.xml

Issue 2863063002: Making ChildConnectionAllocator simpler. (Closed)
Patch Set: Fixed tests. Created 3 years, 7 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 2013 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2013 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.android_webview.shell"> 10 package="org.chromium.android_webview.shell">
(...skipping 24 matching lines...) Expand all
35 </activity> 35 </activity>
36 <activity android:name="org.chromium.android_webview.test.AwTestRunnerActivi ty" 36 <activity android:name="org.chromium.android_webview.test.AwTestRunnerActivi ty"
37 android:label="AwTestRunnerActivity"> 37 android:label="AwTestRunnerActivity">
38 <intent-filter> 38 <intent-filter>
39 <action android:name="android.intent.action.MAIN" /> 39 <action android:name="android.intent.action.MAIN" />
40 <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATIO N_TEST" /> 40 <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATIO N_TEST" />
41 </intent-filter> 41 </intent-filter>
42 </activity> 42 </activity>
43 <provider android:name="org.chromium.android_webview.test.TestContentProvide r" 43 <provider android:name="org.chromium.android_webview.test.TestContentProvide r"
44 android:authorities="org.chromium.android_webview.test.TestContentProvid er" /> 44 android:authorities="org.chromium.android_webview.test.TestContentProvid er" />
45 <meta-data android:name="org.chromium.content.browser.SANDBOXED_SERVICES_NAM E"
46 android:value="org.chromium.content.app.SandboxedProcessService"/ >
45 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES " 47 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERVICES "
46 android:value="1"/> 48 android:value="1"/>
47 <service android:name="org.chromium.content.app.SandboxedProcessService0" 49 <service android:name="org.chromium.content.app.SandboxedProcessService0"
48 android:process=":sandboxed_process0" 50 android:process=":sandboxed_process0"
49 android:isolatedProcess="true" 51 android:isolatedProcess="true"
50 android:exported="false" /> 52 android:exported="false" />
51 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICE S" 53 <meta-data android:name="org.chromium.content.browser.NUM_PRIVILEGED_SERVICE S"
52 android:value="0"/> 54 android:value="0"/>
53 <!-- See AwSecondBrowserProcessTest --> 55 <!-- See AwSecondBrowserProcessTest -->
54 <service android:name="org.chromium.android_webview.test.SecondBrowserProces s" 56 <service android:name="org.chromium.android_webview.test.SecondBrowserProces s"
55 android:process=":second_browser_process" 57 android:process=":second_browser_process"
56 android:isolatedProcess="false" 58 android:isolatedProcess="false"
57 android:exported="false" /> 59 android:exported="false" />
58 </application> 60 </application>
59 </manifest> 61 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698