| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 android:noHistory="true" | 51 android:noHistory="true" |
| 52 android:exported="true"> | 52 android:exported="true"> |
| 53 </activity> | 53 </activity> |
| 54 <activity | 54 <activity |
| 55 android:name="org.chromium.webview_shell.StartupTimeActivity" | 55 android:name="org.chromium.webview_shell.StartupTimeActivity" |
| 56 android:label="@string/title_activity_startup_time" | 56 android:label="@string/title_activity_startup_time" |
| 57 android:noHistory="true" | 57 android:noHistory="true" |
| 58 android:exported="true"> | 58 android:exported="true"> |
| 59 </activity> | 59 </activity> |
| 60 <activity | 60 <activity |
| 61 android:name="org.chromium.webview_shell.WebViewCreateDestroyActivit
y" |
| 62 android:launchMode="singleTask" |
| 63 android:label="@string/title_activity_create_destroy" |
| 64 android:exported="true"> |
| 65 </activity> |
| 66 <activity |
| 61 android:name="org.chromium.webview_shell.WebViewBrowserActivity" | 67 android:name="org.chromium.webview_shell.WebViewBrowserActivity" |
| 62 android:label="@string/title_activity_browser" | 68 android:label="@string/title_activity_browser" |
| 63 android:exported="true" | 69 android:exported="true" |
| 64 android:windowSoftInputMode="adjustResize" | 70 android:windowSoftInputMode="adjustResize" |
| 65 android:configChanges="orientation|screenSize|smallestScreenSize|scr
eenLayout"> | 71 android:configChanges="orientation|screenSize|smallestScreenSize|scr
eenLayout"> |
| 66 <intent-filter> | 72 <intent-filter> |
| 67 <action android:name="android.intent.action.MAIN" /> | 73 <action android:name="android.intent.action.MAIN" /> |
| 68 <category android:name="android.intent.category.LAUNCHER" /> | 74 <category android:name="android.intent.category.LAUNCHER" /> |
| 69 </intent-filter> | 75 </intent-filter> |
| 70 <!-- Catch intents which do not specify a MIME type --> | 76 <!-- Catch intents which do not specify a MIME type --> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 109 |
| 104 <activity | 110 <activity |
| 105 android:name="org.chromium.webview_shell.PageCyclerTestActivity" | 111 android:name="org.chromium.webview_shell.PageCyclerTestActivity" |
| 106 android:label="@string/title_activity_page_cycler" | 112 android:label="@string/title_activity_page_cycler" |
| 107 android:exported="true"> | 113 android:exported="true"> |
| 108 </activity> | 114 </activity> |
| 109 | 115 |
| 110 <uses-library android:name="android.test.runner" /> | 116 <uses-library android:name="android.test.runner" /> |
| 111 </application> | 117 </application> |
| 112 </manifest> | 118 </manifest> |
| OLD | NEW |