| Index: chrome/android/java/AndroidManifest.xml
|
| diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
|
| index 79dd66967d26f2c026ffd997dbb18f6894b87288..d6198cad1717b397336b78084669af4cfd54258d 100644
|
| --- a/chrome/android/java/AndroidManifest.xml
|
| +++ b/chrome/android/java/AndroidManifest.xml
|
| @@ -199,9 +199,8 @@ by a child template that "extends" this file.
|
| <data android:scheme="file"/>
|
| <data android:scheme="content"/>
|
| <data android:host="*" />
|
| - <data android:pathPattern=".*\\.mhtml"/>
|
| - <data android:pathPattern=".*\\.mht"/>
|
| - <data android:pathPattern=".*\\.eml"/>
|
| + <data android:pathPattern="/.*\\.mhtml"/>
|
| + <data android:pathPattern="/.*\\.mht"/>
|
| </intent-filter>
|
| <!-- Same filter as above but with mimeType="*/*". Used for
|
| handling intent send by ShareIt. -->
|
| @@ -213,9 +212,8 @@ by a child template that "extends" this file.
|
| <data android:scheme="content"/>
|
| <data android:host="*" />
|
| <data android:mimeType="*/*"/>
|
| - <data android:pathPattern=".*\\.mhtml"/>
|
| - <data android:pathPattern=".*\\.mht"/>
|
| - <data android:pathPattern=".*\\.eml"/>
|
| + <data android:pathPattern="/.*\\.mhtml"/>
|
| + <data android:pathPattern="/.*\\.mht"/>
|
| </intent-filter>
|
| <intent-filter>
|
| <action android:name="android.intent.action.MEDIA_SEARCH" />
|
|
|