| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <manifest | 7 <manifest |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 package="org.chromium.webview_shell" | 9 package="org.chromium.webview_shell" |
| 10 android:versionCode="1" | 10 android:versionCode="1" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 android:name="org.chromium.webview_shell.WebViewCreateDestroyActivit
y" | 61 android:name="org.chromium.webview_shell.WebViewCreateDestroyActivit
y" |
| 62 android:launchMode="singleTask" | 62 android:launchMode="singleTask" |
| 63 android:label="@string/title_activity_create_destroy" | 63 android:label="@string/title_activity_create_destroy" |
| 64 android:exported="true"> | 64 android:exported="true"> |
| 65 </activity> | 65 </activity> |
| 66 <activity | 66 <activity |
| 67 android:name="org.chromium.webview_shell.WebViewBrowserActivity" | 67 android:name="org.chromium.webview_shell.WebViewBrowserActivity" |
| 68 android:label="@string/title_activity_browser" | 68 android:label="@string/title_activity_browser" |
| 69 android:exported="true" | 69 android:exported="true" |
| 70 android:windowSoftInputMode="adjustResize" | 70 android:windowSoftInputMode="adjustResize" |
| 71 android:configChanges="orientation|screenSize|smallestScreenSize|scr
eenLayout"> | 71 android:configChanges="orientation|screenSize|smallestScreenSize|scr
eenLayout|density"> |
| 72 <intent-filter> | 72 <intent-filter> |
| 73 <action android:name="android.intent.action.MAIN" /> | 73 <action android:name="android.intent.action.MAIN" /> |
| 74 <category android:name="android.intent.category.LAUNCHER" /> | 74 <category android:name="android.intent.category.LAUNCHER" /> |
| 75 </intent-filter> | 75 </intent-filter> |
| 76 <!-- Catch intents which do not specify a MIME type --> | 76 <!-- Catch intents which do not specify a MIME type --> |
| 77 <intent-filter> | 77 <intent-filter> |
| 78 <action android:name="android.intent.action.VIEW" /> | 78 <action android:name="android.intent.action.VIEW" /> |
| 79 <category android:name="android.intent.category.DEFAULT" /> | 79 <category android:name="android.intent.category.DEFAULT" /> |
| 80 <category android:name="android.intent.category.BROWSABLE" /> | 80 <category android:name="android.intent.category.BROWSABLE" /> |
| 81 <data android:scheme="http" /> | 81 <data android:scheme="http" /> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 109 | 109 |
| 110 <activity | 110 <activity |
| 111 android:name="org.chromium.webview_shell.PageCyclerTestActivity" | 111 android:name="org.chromium.webview_shell.PageCyclerTestActivity" |
| 112 android:label="@string/title_activity_page_cycler" | 112 android:label="@string/title_activity_page_cycler" |
| 113 android:exported="true"> | 113 android:exported="true"> |
| 114 </activity> | 114 </activity> |
| 115 | 115 |
| 116 <uses-library android:name="android.test.runner" /> | 116 <uses-library android:name="android.test.runner" /> |
| 117 </application> | 117 </application> |
| 118 </manifest> | 118 </manifest> |
| OLD | NEW |