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

Side by Side Diff: chrome/android/testshell/java/AndroidManifest.xml

Issue 10905209: Revert "Revert 155950 - Add initial Chromium TestShell support for Android" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add launcher property to apk manifest Created 8 years, 3 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 | Annotate | Revision Log
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. 3 <!-- Copyright (c) 2012 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.content_shell"> 10 package="org.chromium.chrome.testshell">
11 11
12 <permission android:name="org.chromium.content_shell.permission.SANDBOX" 12 <permission android:name="org.chromium.chrome.testshell.permission.SANDBOX"
13 android:protectionLevel="signature" /> 13 android:protectionLevel="signature" />
14 14
15 <application android:name="ContentShellApplication" 15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp plication"
16 android:label="ContentShell" 16 android:label="ChromiumTestShell"
17 android:debuggable="true"> 17 android:debuggable="true">
18 <activity android:name="ContentShellActivity" 18 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA ctivity"
19 android:launchMode="singleTask" 19 android:label="ChromiumTestShellActivity"
20 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
21 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
22 android:hardwareAccelerated="true"> 20 android:hardwareAccelerated="true">
23 <intent-filter> 21 <intent-filter>
24 <action android:name="android.intent.action.MAIN"/> 22 <action android:name="android.intent.action.MAIN" />
25 <category android:name="android.intent.category.LAUNCHER"/> 23 <category android:name="android.intent.category.LAUNCHER" />
26 </intent-filter> 24 </intent-filter>
27 </activity> 25 </activity>
28
29 <!-- The following service entries exist in order to allow us to 26 <!-- The following service entries exist in order to allow us to
30 start more than one sandboxed process. --> 27 start more than one sandboxed process. -->
31 28
32 <!-- NOTE: If you change the values of "android:process" for any of the below services, 29 <!-- NOTE: If you change the values of "android:process" for any of the below services,
33 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. --> 30 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
34 <service android:name="org.chromium.content.app.SandboxedProcessService0 " 31 <service android:name="org.chromium.content.app.SandboxedProcessService0 "
35 android:process=":sandboxed_process0" 32 android:process=":sandboxed_process0"
36 android:permission="org.chromium.content_shell.permission.SANDB OX" 33 android:permission="org.chromium.content_shell.permission.SANDB OX"
37 android:exported="false" /> 34 android:exported="false" />
38 <service android:name="org.chromium.content.app.SandboxedProcessService1 " 35 <service android:name="org.chromium.content.app.SandboxedProcessService1 "
(...skipping 11 matching lines...) Expand all
50 <service android:name="org.chromium.content.app.SandboxedProcessService4 " 47 <service android:name="org.chromium.content.app.SandboxedProcessService4 "
51 android:process=":sandboxed_process4" 48 android:process=":sandboxed_process4"
52 android:permission="org.chromium.content_shell.permission.SANDB OX" 49 android:permission="org.chromium.content_shell.permission.SANDB OX"
53 android:exported="false" /> 50 android:exported="false" />
54 <service android:name="org.chromium.content.app.SandboxedProcessService5 " 51 <service android:name="org.chromium.content.app.SandboxedProcessService5 "
55 android:process=":sandboxed_process5" 52 android:process=":sandboxed_process5"
56 android:permission="org.chromium.content_shell.permission.SANDB OX" 53 android:permission="org.chromium.content_shell.permission.SANDB OX"
57 android:exported="false" /> 54 android:exported="false" />
58 </application> 55 </application>
59 56
60 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" /> 57 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" />
61 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 58 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
62 <uses-permission android:name="android.permission.INTERNET"/> 59 <uses-permission android:name="android.permission.INTERNET"/>
63 <uses-permission android:name="android.permission.VIBRATE"/>
64 <uses-permission android:name="android.permission.WAKE_LOCK"/> 60 <uses-permission android:name="android.permission.WAKE_LOCK"/>
65 </manifest> 61 </manifest>
OLDNEW
« no previous file with comments | « chrome/android/testshell/chrome_main_delegate_testshell_android.cc ('k') | chrome/android/testshell/java/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698