Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2750)

Unified Diff: chrome/android/java/AndroidManifest.xml

Issue 2197343002: [Offline Page]Fix pathpattern warning and delete eml support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Delete eml support Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" />
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698