| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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.WebViewBrowserActivity" | 61 android:name="org.chromium.webview_shell.WebViewBrowserActivity" |
| 62 android:label="@string/title_activity_browser" | 62 android:label="@string/title_activity_browser" |
| 63 android:exported="true" | 63 android:exported="true" |
| 64 android:windowSoftInputMode="adjustResize" | 64 android:windowSoftInputMode="adjustResize" |
| 65 android:configChanges="orientation|screenSize"> | 65 android:configChanges="orientation|screenSize|smallestScreenSize|scr
eenLayout"> |
| 66 <intent-filter> | 66 <intent-filter> |
| 67 <action android:name="android.intent.action.MAIN" /> | 67 <action android:name="android.intent.action.MAIN" /> |
| 68 <category android:name="android.intent.category.LAUNCHER" /> | 68 <category android:name="android.intent.category.LAUNCHER" /> |
| 69 </intent-filter> | 69 </intent-filter> |
| 70 <!-- Catch intents which do not specify a MIME type --> | 70 <!-- Catch intents which do not specify a MIME type --> |
| 71 <intent-filter> | 71 <intent-filter> |
| 72 <action android:name="android.intent.action.VIEW" /> | 72 <action android:name="android.intent.action.VIEW" /> |
| 73 <category android:name="android.intent.category.DEFAULT" /> | 73 <category android:name="android.intent.category.DEFAULT" /> |
| 74 <category android:name="android.intent.category.BROWSABLE" /> | 74 <category android:name="android.intent.category.BROWSABLE" /> |
| 75 <data android:scheme="http" /> | 75 <data android:scheme="http" /> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 98 | 98 |
| 99 <activity | 99 <activity |
| 100 android:name="org.chromium.webview_shell.PageCyclerTestActivity" | 100 android:name="org.chromium.webview_shell.PageCyclerTestActivity" |
| 101 android:label="@string/title_activity_page_cycler" | 101 android:label="@string/title_activity_page_cycler" |
| 102 android:exported="true"> | 102 android:exported="true"> |
| 103 </activity> | 103 </activity> |
| 104 | 104 |
| 105 <uses-library android:name="android.test.runner" /> | 105 <uses-library android:name="android.test.runner" /> |
| 106 </application> | 106 </application> |
| 107 </manifest> | 107 </manifest> |
| OLD | NEW |