Loosen up heuristics for detecting account creation forms.
[chromium-blink-merge.git] / content / shell / android / java / AndroidManifest.xml
blob26c22b829412d2e559241b3732b2e11d731b4c56
1 <?xml version="1.0" encoding="utf-8"?>
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
5      Use of this source code is governed by a BSD-style license that can be
6      found in the LICENSE file.
7  -->
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10     package="org.chromium.content_shell">
12     <permission android:name="org.chromium.content_shell.permission.SANDBOX"
13             android:protectionLevel="signature" />
15     <application android:name="ContentShellApplication"
16             android:label="ContentShell"
17             android:debuggable="true">
18         <activity android:name="ContentShellActivity"
19                   android:launchMode="singleTask"
20                   android:theme="@android:style/Theme.Holo.Light.NoActionBar"
21                   android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
22                   android:hardwareAccelerated="true">
23             <intent-filter>
24                 <action android:name="android.intent.action.MAIN"/>
25                 <category android:name="android.intent.category.LAUNCHER"/>
26             </intent-filter>
27         </activity>
29         <!-- The following service entries exist in order to allow us to
30              start more than one sandboxed process. -->
32         <!-- NOTE: If you change the values of "android:process" for any of the below services,
33              you also need to update kHelperProcessExecutableName in chrome_constants.cc. -->
34         <service android:name="org.chromium.content.app.SandboxedProcessService0"
35                  android:process=":sandboxed_process0"
36                  android:permission="org.chromium.content_shell.permission.SANDBOX"
37                  android:exported="false" />
38         <service android:name="org.chromium.content.app.SandboxedProcessService1"
39                  android:process=":sandboxed_process1"
40                  android:permission="org.chromium.content_shell.permission.SANDBOX"
41                  android:exported="false" />
42         <service android:name="org.chromium.content.app.SandboxedProcessService2"
43                  android:process=":sandboxed_process2"
44                  android:permission="org.chromium.content_shell.permission.SANDBOX"
45                  android:exported="false" />
46         <service android:name="org.chromium.content.app.SandboxedProcessService3"
47                  android:process=":sandboxed_process3"
48                  android:permission="org.chromium.content_shell.permission.SANDBOX"
49                  android:exported="false" />
50         <service android:name="org.chromium.content.app.SandboxedProcessService4"
51                  android:process=":sandboxed_process4"
52                  android:permission="org.chromium.content_shell.permission.SANDBOX"
53                  android:exported="false" />
54         <service android:name="org.chromium.content.app.SandboxedProcessService5"
55                  android:process=":sandboxed_process5"
56                  android:permission="org.chromium.content_shell.permission.SANDBOX"
57                  android:exported="false" />
58     </application>
60     <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />
61     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
62     <uses-permission android:name="android.permission.INTERNET"/>
63     <uses-permission android:name="android.permission.VIBRATE"/>
64     <uses-permission android:name="android.permission.WAKE_LOCK"/>
65 </manifest>