Chromium Code Reviews| Index: chrome/android/java/AndroidManifest.xml |
| diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml |
| index a0b5f74b5099ea94726c39cb37af198b11cd97c1..4c5b7b65cd32ac8104f1714cd96160038689f5ef 100644 |
| --- a/chrome/android/java/AndroidManifest.xml |
| +++ b/chrome/android/java/AndroidManifest.xml |
| @@ -188,7 +188,30 @@ by a child template that "extends" this file. |
| <intent-filter> |
| <action android:name="android.intent.action.VIEW" /> |
| <category android:name="android.intent.category.DEFAULT" /> |
|
Ted C
2016/07/26 17:01:47
seems odd that this is the one VIEW handler that l
Vivian
2016/07/26 17:12:59
Not really sure about this...seems like this piece
|
| - <data android:scheme="file" android:mimeType="multipart/related"/> |
| + <data android:mimeType="multipart/related"/> |
|
Ted C
2016/07/26 17:01:47
why did this drop the file restriction? I see in
Vivian
2016/07/26 17:12:59
Google Drive, Gmail and Android's Download use con
Ted C
2016/07/26 17:17:09
Should we specify file || content then like the be
Vivian
2016/07/26 17:21:37
In Android's developer guide (https://developer.an
Ted C
2016/07/26 17:24:02
Ah, didn't know that. Not sure whether it is wort
Vivian
2016/07/26 17:41:31
Uploaded a new patch, making the schemes explicit.
|
| + </intent-filter> |
| + <intent-filter> |
| + <action android:name="android.intent.action.VIEW" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <category android:name="android.intent.category.BROWSABLE" /> |
| + <data android:scheme="file"/> |
| + <data android:scheme="content"/> |
| + <data android:host="*" /> |
| + <data android:pathPattern=".*\\.mhtml"/> |
| + <data android:pathPattern=".*\\.mht"/> |
| + <data android:pathPattern=".*\\.eml"/> |
| + </intent-filter> |
| + <intent-filter> |
| + <action android:name="android.intent.action.VIEW" /> |
| + <category android:name="android.intent.category.DEFAULT" /> |
| + <category android:name="android.intent.category.BROWSABLE" /> |
| + <data android:scheme="file"/> |
| + <data android:scheme="content"/> |
| + <data android:host="*" /> |
| + <data android:mimeType="*/*"/> |
| + <data android:pathPattern=".*\\.mhtml"/> |
| + <data android:pathPattern=".*\\.mht"/> |
| + <data android:pathPattern=".*\\.eml"/> |
| </intent-filter> |
| <intent-filter> |
| <action android:name="android.intent.action.MEDIA_SEARCH" /> |