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 10 matching lines...) Expand all Loading... |
21 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | 21 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
22 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> | 22 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION" /> |
23 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | 23 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
24 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | 24 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
25 | 25 |
26 <application | 26 <application |
27 android:icon="@drawable/ic_launcher" | 27 android:icon="@drawable/ic_launcher" |
28 android:label="@string/app_name" | 28 android:label="@string/app_name" |
29 android:theme="@android:style/Theme.Light" > | 29 android:theme="@android:style/Theme.Light" > |
30 <activity | 30 <activity |
31 android:name=".TelemetryActivity" | 31 android:name="org.chromium.webview_shell.TelemetryActivity" |
32 android:label="@string/title_activity_telemetry" | 32 android:label="@string/title_activity_telemetry" |
33 android:exported="true"> | 33 android:exported="true"> |
34 </activity> | 34 </activity> |
35 <activity | 35 <activity |
36 android:name=".TelemetryMemoryPressureActivity" | 36 android:name="org.chromium.webview_shell.TelemetryMemoryPressureActi
vity" |
37 android:launchMode="singleTask" | 37 android:launchMode="singleTask" |
38 android:label="@string/title_activity_telemetry" | 38 android:label="@string/title_activity_telemetry" |
39 android:exported="true"> | 39 android:exported="true"> |
40 </activity> | 40 </activity> |
41 <activity | 41 <activity |
42 android:name=".JankActivity" | 42 android:name="org.chromium.webview_shell.JankActivity" |
43 android:label="@string/title_activity_jank" | 43 android:label="@string/title_activity_jank" |
44 android:noHistory="true" | 44 android:noHistory="true" |
45 android:exported="true"> | 45 android:exported="true"> |
46 </activity> | 46 </activity> |
47 <activity | 47 <activity |
48 android:name=".StartupTimeActivity" | 48 android:name="org.chromium.webview_shell.StartupTimeActivity" |
49 android:label="@string/title_activity_startup_time" | 49 android:label="@string/title_activity_startup_time" |
50 android:noHistory="true" | 50 android:noHistory="true" |
51 android:exported="true"> | 51 android:exported="true"> |
52 </activity> | 52 </activity> |
53 <activity | 53 <activity |
54 android:name=".WebViewBrowserActivity" | 54 android:name="org.chromium.webview_shell.WebViewBrowserActivity" |
55 android:label="@string/title_activity_browser" | 55 android:label="@string/title_activity_browser" |
56 android:exported="true"> | 56 android:exported="true"> |
57 <intent-filter> | 57 <intent-filter> |
58 <action android:name="android.intent.action.MAIN" /> | 58 <action android:name="android.intent.action.MAIN" /> |
59 <category android:name="android.intent.category.LAUNCHER" /> | 59 <category android:name="android.intent.category.LAUNCHER" /> |
60 </intent-filter> | 60 </intent-filter> |
61 <!-- Catch intents which do not specify a MIME type --> | 61 <!-- Catch intents which do not specify a MIME type --> |
62 <intent-filter> | 62 <intent-filter> |
63 <action android:name="android.intent.action.VIEW" /> | 63 <action android:name="android.intent.action.VIEW" /> |
64 <category android:name="android.intent.category.DEFAULT" /> | 64 <category android:name="android.intent.category.DEFAULT" /> |
65 <category android:name="android.intent.category.BROWSABLE" /> | 65 <category android:name="android.intent.category.BROWSABLE" /> |
66 <data android:scheme="http" /> | 66 <data android:scheme="http" /> |
67 <data android:scheme="https" /> | 67 <data android:scheme="https" /> |
68 </intent-filter> | 68 </intent-filter> |
69 <!-- Catch intents which do specify a MIME type --> | 69 <!-- Catch intents which do specify a MIME type --> |
70 <intent-filter> | 70 <intent-filter> |
71 <action android:name="android.intent.action.VIEW" /> | 71 <action android:name="android.intent.action.VIEW" /> |
72 <category android:name="android.intent.category.DEFAULT" /> | 72 <category android:name="android.intent.category.DEFAULT" /> |
73 <category android:name="android.intent.category.BROWSABLE" /> | 73 <category android:name="android.intent.category.BROWSABLE" /> |
74 <data android:scheme="http" /> | 74 <data android:scheme="http" /> |
75 <data android:scheme="https" /> | 75 <data android:scheme="https" /> |
76 <data android:mimeType="text/html"/> | 76 <data android:mimeType="text/html"/> |
77 <data android:mimeType="text/plain"/> | 77 <data android:mimeType="text/plain"/> |
78 <data android:mimeType="application/xhtml+xml"/> | 78 <data android:mimeType="application/xhtml+xml"/> |
79 <data android:mimeType="application/vnd.wap.xhtml+xml"/> <!-- XH
TML MP --> | 79 <data android:mimeType="application/vnd.wap.xhtml+xml"/> <!-- XH
TML MP --> |
80 </intent-filter> | 80 </intent-filter> |
81 </activity> | 81 </activity> |
82 <activity | 82 <activity |
83 android:name=".WebViewLayoutTestActivity" | 83 android:name="org.chromium.webview_shell.WebViewLayoutTestActivity" |
84 android:label="@string/title_activity_layout_test" | 84 android:label="@string/title_activity_layout_test" |
85 android:exported="true"> | 85 android:exported="true"> |
86 </activity> | 86 </activity> |
87 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" | 87 <activity android:name="org.chromium.test.broker.OnDeviceInstrumentation
Broker" |
88 android:exported="true"/> | 88 android:exported="true"/> |
89 | 89 |
| 90 <activity |
| 91 android:name="org.chromium.webview_shell.PageCyclerTestActivity" |
| 92 android:label="@string/title_activity_page_cycler" |
| 93 android:exported="true"> |
| 94 </activity> |
| 95 |
90 <uses-library android:name="android.test.runner" /> | 96 <uses-library android:name="android.test.runner" /> |
91 </application> | 97 </application> |
92 | |
93 <instrumentation android:name="org.chromium.webview_shell.WebViewLayoutTestR
unner" | |
94 android:targetPackage="org.chromium.webview_shell" | |
95 android:label="Tests for org.chromium.webview_shell" /> | |
96 </manifest> | 98 </manifest> |
OLD | NEW |