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

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

Issue 479993002: [Android] Shell Action Bar behavior same as chrome Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 (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_apk"> 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:icon="@mipmap/app_icon" 16 android:icon="@mipmap/app_icon"
17 android:label="Content Shell"> 17 android:label="Content Shell">
18 <activity android:name="ContentShellActivity" 18 <activity android:name="ContentShellActivity"
19 android:launchMode="singleTask" 19 android:launchMode="singleTask"
20 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 20 android:theme="@style/Theme.ChromeActionBar"
21 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 21 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
22 android:hardwareAccelerated="true"> 22 android:hardwareAccelerated="true">
23 <intent-filter> 23 <intent-filter>
24 <action android:name="android.intent.action.MAIN"/> 24 <action android:name="android.intent.action.MAIN"/>
25 <category android:name="android.intent.category.LAUNCHER"/> 25 <category android:name="android.intent.category.LAUNCHER"/>
26 </intent-filter> 26 </intent-filter>
27 </activity> 27 </activity>
28 <!-- The following service entries exist in order to allow us to 28 <!-- The following service entries exist in order to allow us to
29 start more than one sandboxed process. --> 29 start more than one sandboxed process. -->
30 30
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 139 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
140 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> 140 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
141 <uses-permission android:name="android.permission.CAMERA"/> 141 <uses-permission android:name="android.permission.CAMERA"/>
142 <uses-permission android:name="android.permission.INTERNET"/> 142 <uses-permission android:name="android.permission.INTERNET"/>
143 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 143 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
144 <uses-permission android:name="android.permission.RECORD_AUDIO"/> 144 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
145 <uses-permission android:name="android.permission.VIBRATE"/> 145 <uses-permission android:name="android.permission.VIBRATE"/>
146 <uses-permission android:name="android.permission.WAKE_LOCK"/> 146 <uses-permission android:name="android.permission.WAKE_LOCK"/>
147 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 147 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
148 </manifest> 148 </manifest>
OLDNEW
« no previous file with comments | « chrome/android/shell/res/values-v17/styles.xml ('k') | content/shell/android/shell_apk/res/values-v17/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698