Chromium Code Reviews| 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:mimeType="multipart/related"/> |
| 192 </intent-filter> | |
| 193 » <intent-filter> | |
|
dewittj
2016/07/25 20:13:26
nit: I don't think this file should have tabs in i
Vivian
2016/07/25 21:51:44
Done.
| |
| 194 <action android:name="android.intent.action.VIEW" /> | |
| 195 <category android:name="android.intent.category.DEFAULT" /> | |
| 196 » » <category android:name="android.intent.category.BROWSABLE" /> | |
| 197 <data android:scheme="file"/> | |
| 198 » » <data android:scheme="content"/> | |
| 199 » » <data android:host="*" /> | |
| 200 » » <data android:pathPattern=".*\\.mhtml"/> | |
|
dewittj
2016/07/25 20:13:26
also maybe include .mht and .eml?
Vivian
2016/07/25 21:51:44
I added .mht and .eml. Not sure if .eml is actuall
| |
| 201 </intent-filter> | |
| 202 » <intent-filter> | |
|
dewittj
2016/07/25 20:13:26
duplicate section?
Vivian
2016/07/25 21:51:44
These two sections differ in the line <data androi
| |
| 203 <action android:name="android.intent.action.VIEW" /> | |
| 204 <category android:name="android.intent.category.DEFAULT" /> | |
| 205 » » <category android:name="android.intent.category.BROWSABLE" /> | |
| 206 <data android:scheme="file"/> | |
| 207 » » <data android:scheme="content"/> | |
| 208 » » <data android:host="*" /> | |
| 209 » » <data android:mimeType="*/*"/> | |
| 210 » » <data android:pathPattern=".*\\.mhtml"/> | |
| 192 </intent-filter> | 211 </intent-filter> |
| 193 <intent-filter> | 212 <intent-filter> |
| 194 <action android:name="android.intent.action.MEDIA_SEARCH" /> | 213 <action android:name="android.intent.action.MEDIA_SEARCH" /> |
| 195 <category android:name="android.intent.category.DEFAULT" /> | 214 <category android:name="android.intent.category.DEFAULT" /> |
| 196 </intent-filter> | 215 </intent-filter> |
| 197 <intent-filter> | 216 <intent-filter> |
| 198 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS " /> | 217 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS " /> |
| 199 <category android:name="android.intent.category.DEFAULT" /> | 218 <category android:name="android.intent.category.DEFAULT" /> |
| 200 </intent-filter> | 219 </intent-filter> |
| 201 <intent-filter> | 220 <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. | 873 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. | 874 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 | 875 The downstream manifest replaces this block, and hence replaces the list of media route |
| 857 controllers with its own list. --> | 876 controllers with its own list. --> |
| 858 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 877 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 859 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 878 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 860 | 879 |
| 861 {% endblock %} | 880 {% endblock %} |
| 862 </application> | 881 </application> |
| 863 </manifest> | 882 </manifest> |
| OLD | NEW |