| OLD | NEW |
| 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 Use of this source code is governed by a BSD-style license that can be | 4 |
| 5 found in the LICENSE file. | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 --> | 6 found in the LICENSE file. |
| 7 --> |
| 8 |
| 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 package="org.chromium.content_shell" | 10 package="org.chromium.content_shell"> |
| 9 android:versionCode="1" | |
| 10 android:versionName="1.0"> | |
| 11 | 11 |
| 12 <uses-sdk android:minSdkVersion="14" /> | 12 <application android:name="ContentShellApplication" |
| 13 | 13 android:label="ContentShell" |
| 14 <application android:label="ContentShell"> | 14 android:debuggable="true"> |
| 15 <activity android:name=".ContentShellActivity" | 15 <activity android:name="ContentShellActivity" |
| 16 android:label="ContentShell" | 16 android:launchMode="singleTask" |
| 17 android:configChanges="orientation|keyboardHidden|keyboard|scree
nSize"> | 17 android:theme="@android:style/Theme.Holo.Light.NoActionBar" |
| 18 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" |
| 19 android:hardwareAccelerated="true"> |
| 18 <intent-filter> | 20 <intent-filter> |
| 19 <action android:name="android.intent.action.MAIN" /> | 21 <action android:name="android.intent.action.MAIN"/> |
| 20 <category android:name="android.intent.category.LAUNCHER" /> | 22 <category android:name="android.intent.category.LAUNCHER"/> |
| 21 </intent-filter> | 23 </intent-filter> |
| 22 </activity> | 24 </activity> |
| 23 </application> | 25 </application> |
| 24 | 26 |
| 27 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" /> |
| 28 <uses-permission android:name="android.permission.INTERNET"/> |
| 25 </manifest> | 29 </manifest> |
| OLD | NEW |