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

Side by Side Diff: content/shell/android/shell_apk/AndroidManifest.xml

Issue 12047068: Add apk for running content_browsertests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 7 years, 10 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.content_shell_apk">
11 11
12 <permission android:name="org.chromium.content_shell.permission.SANDBOX" 12 <permission android:name="org.chromium.content_shell.permission.SANDBOX"
13 android:protectionLevel="signature" /> 13 android:protectionLevel="signature" />
14 14
15 <application android:name="ContentShellApplication" 15 <application android:name="ContentShellApplication"
16 android:label="ContentShell"> 16 android:label="ContentShell">
17 <activity android:name="ContentShellActivity" 17 <activity android:name="ContentShellActivity"
18 android:launchMode="singleTask" 18 android:launchMode="singleTask"
19 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 19 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
20 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 20 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" /> 64 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
65 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 65 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
66 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 66 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
67 <uses-permission android:name="android.permission.INTERNET"/> 67 <uses-permission android:name="android.permission.INTERNET"/>
68 <uses-permission android:name="android.permission.VIBRATE"/> 68 <uses-permission android:name="android.permission.VIBRATE"/>
69 <uses-permission android:name="android.permission.READ_PHONE_STATE"/> 69 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
70 <uses-permission android:name="android.permission.WAKE_LOCK"/> 70 <uses-permission android:name="android.permission.WAKE_LOCK"/>
71 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 71 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
72 </manifest> 72 </manifest>
OLDNEW
« no previous file with comments | « content/shell/android/res/values/strings.xml ('k') | content/shell/android/shell_apk/res/layout/content_shell_activity.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698