OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
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 Note: This is a jinja2 template, processed at build time into the final manifest
. | 7 Note: This is a jinja2 template, processed at build time into the final manifest
. |
8 | 8 |
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden | 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden |
10 by a child template that "extends" this file. | 10 by a child template that "extends" this file. |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 <data android:scheme="content" /> | 181 <data android:scheme="content" /> |
182 <data android:scheme="javascript" /> | 182 <data android:scheme="javascript" /> |
183 <data android:mimeType="text/html"/> | 183 <data android:mimeType="text/html"/> |
184 <data android:mimeType="text/plain"/> | 184 <data android:mimeType="text/plain"/> |
185 <data android:mimeType="application/xhtml+xml"/> | 185 <data android:mimeType="application/xhtml+xml"/> |
186 </intent-filter> | 186 </intent-filter> |
187 <!-- MHTML support, used for snapshots --> | 187 <!-- MHTML support, used for snapshots --> |
188 <intent-filter> | 188 <intent-filter> |
189 <action android:name="android.intent.action.VIEW" /> | 189 <action android:name="android.intent.action.VIEW" /> |
190 <category android:name="android.intent.category.DEFAULT" /> | 190 <category android:name="android.intent.category.DEFAULT" /> |
191 <data android:scheme="file" android:mimeType="multipart/related"
/> | 191 <data android:scheme="file"/> |
| 192 <data android:scheme="content"/> |
| 193 <data android:mimeType="multipart/related"/> |
| 194 </intent-filter> |
| 195 <intent-filter> |
| 196 <action android:name="android.intent.action.VIEW" /> |
| 197 <category android:name="android.intent.category.DEFAULT" /> |
| 198 <category android:name="android.intent.category.BROWSABLE" /> |
| 199 <data android:scheme="file"/> |
| 200 <data android:scheme="content"/> |
| 201 <data android:host="*" /> |
| 202 <data android:pathPattern=".*\\.mhtml"/> |
| 203 <data android:pathPattern=".*\\.mht"/> |
| 204 <data android:pathPattern=".*\\.eml"/> |
| 205 </intent-filter> |
| 206 <!-- Same filter as above but with mimeType="*/*". Used for |
| 207 handling intent send by ShareIt. --> |
| 208 <intent-filter> |
| 209 <action android:name="android.intent.action.VIEW" /> |
| 210 <category android:name="android.intent.category.DEFAULT" /> |
| 211 <category android:name="android.intent.category.BROWSABLE" /> |
| 212 <data android:scheme="file"/> |
| 213 <data android:scheme="content"/> |
| 214 <data android:host="*" /> |
| 215 <data android:mimeType="*/*"/> |
| 216 <data android:pathPattern=".*\\.mhtml"/> |
| 217 <data android:pathPattern=".*\\.mht"/> |
| 218 <data android:pathPattern=".*\\.eml"/> |
192 </intent-filter> | 219 </intent-filter> |
193 <intent-filter> | 220 <intent-filter> |
194 <action android:name="android.intent.action.MEDIA_SEARCH" /> | 221 <action android:name="android.intent.action.MEDIA_SEARCH" /> |
195 <category android:name="android.intent.category.DEFAULT" /> | 222 <category android:name="android.intent.category.DEFAULT" /> |
196 </intent-filter> | 223 </intent-filter> |
197 <intent-filter> | 224 <intent-filter> |
198 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS
" /> | 225 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS
" /> |
199 <category android:name="android.intent.category.DEFAULT" /> | 226 <category android:name="android.intent.category.DEFAULT" /> |
200 </intent-filter> | 227 </intent-filter> |
201 <intent-filter> | 228 <intent-filter> |
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 881 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
855 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 882 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
856 The downstream manifest replaces this block, and hence replaces the
list of media route | 883 The downstream manifest replaces this block, and hence replaces the
list of media route |
857 controllers with its own list. --> | 884 controllers with its own list. --> |
858 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 885 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
859 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 886 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
860 | 887 |
861 {% endblock %} | 888 {% endblock %} |
862 </application> | 889 </application> |
863 </manifest> | 890 </manifest> |
OLD | NEW |