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

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

Issue 11362181: Add android:configChanges to the AndroidManifest.xml of testshell. (Closed) Base URL: http://git.chromium.org/chromium/src.git@local-add-rt-shell
Patch Set: Created 8 years, 1 month 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 | no next file » | 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. 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.chrome.testshell"> 10 package="org.chromium.chrome.testshell">
11 11
12 <permission android:name="org.chromium.chrome.testshell.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="org.chromium.chrome.testshell.ChromiumTestShellAp plication" 15 <application android:name="org.chromium.chrome.testshell.ChromiumTestShellAp plication"
16 android:label="ChromiumTestShell"> 16 android:label="ChromiumTestShell">
17 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA ctivity" 17 <activity android:name="org.chromium.chrome.testshell.ChromiumTestShellA ctivity"
18 android:label="ChromiumTestShellActivity" 18 android:label="ChromiumTestShellActivity"
19 android:launchMode="singleTask" 19 android:launchMode="singleTask"
20 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 20 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
21 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
21 android:hardwareAccelerated="true"> 22 android:hardwareAccelerated="true">
22 <intent-filter> 23 <intent-filter>
23 <action android:name="android.intent.action.MAIN" /> 24 <action android:name="android.intent.action.MAIN" />
24 <category android:name="android.intent.category.LAUNCHER" /> 25 <category android:name="android.intent.category.LAUNCHER" />
25 </intent-filter> 26 </intent-filter>
26 </activity> 27 </activity>
27 <!-- The following service entries exist in order to allow us to 28 <!-- The following service entries exist in order to allow us to
28 start more than one sandboxed process. --> 29 start more than one sandboxed process. -->
29 30
30 <!-- NOTE: If you change the values of "android:process" for any of the below services, 31 <!-- NOTE: If you change the values of "android:process" for any of the below services,
(...skipping 30 matching lines...) Expand all
61 android:exported="false" /> 62 android:exported="false" />
62 </application> 63 </application>
63 64
64 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" /> 65 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" />
65 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 66 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
66 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 67 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
67 <uses-permission android:name="android.permission.INTERNET"/> 68 <uses-permission android:name="android.permission.INTERNET"/>
68 <uses-permission android:name="android.permission.VIBRATE"/> 69 <uses-permission android:name="android.permission.VIBRATE"/>
69 <uses-permission android:name="android.permission.WAKE_LOCK"/> 70 <uses-permission android:name="android.permission.WAKE_LOCK"/>
70 </manifest> 71 </manifest>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698