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

Side by Side 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, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 <data android:scheme="content"/> 192 <data android:scheme="content"/>
193 <data android:mimeType="multipart/related"/> 193 <data android:mimeType="multipart/related"/>
194 </intent-filter> 194 </intent-filter>
195 <intent-filter> 195 <intent-filter>
196 <action android:name="android.intent.action.VIEW" /> 196 <action android:name="android.intent.action.VIEW" />
197 <category android:name="android.intent.category.DEFAULT" /> 197 <category android:name="android.intent.category.DEFAULT" />
198 <category android:name="android.intent.category.BROWSABLE" /> 198 <category android:name="android.intent.category.BROWSABLE" />
199 <data android:scheme="file"/> 199 <data android:scheme="file"/>
200 <data android:scheme="content"/> 200 <data android:scheme="content"/>
201 <data android:host="*" /> 201 <data android:host="*" />
202 <data android:pathPattern=".*\\.mhtml"/> 202 <data android:pathPattern="/.*\\.mhtml"/>
203 <data android:pathPattern=".*\\.mht"/> 203 <data android:pathPattern="/.*\\.mht"/>
204 <data android:pathPattern=".*\\.eml"/>
205 </intent-filter> 204 </intent-filter>
206 <!-- Same filter as above but with mimeType="*/*". Used for 205 <!-- Same filter as above but with mimeType="*/*". Used for
207 handling intent send by ShareIt. --> 206 handling intent send by ShareIt. -->
208 <intent-filter> 207 <intent-filter>
209 <action android:name="android.intent.action.VIEW" /> 208 <action android:name="android.intent.action.VIEW" />
210 <category android:name="android.intent.category.DEFAULT" /> 209 <category android:name="android.intent.category.DEFAULT" />
211 <category android:name="android.intent.category.BROWSABLE" /> 210 <category android:name="android.intent.category.BROWSABLE" />
212 <data android:scheme="file"/> 211 <data android:scheme="file"/>
213 <data android:scheme="content"/> 212 <data android:scheme="content"/>
214 <data android:host="*" /> 213 <data android:host="*" />
215 <data android:mimeType="*/*"/> 214 <data android:mimeType="*/*"/>
216 <data android:pathPattern=".*\\.mhtml"/> 215 <data android:pathPattern="/.*\\.mhtml"/>
217 <data android:pathPattern=".*\\.mht"/> 216 <data android:pathPattern="/.*\\.mht"/>
218 <data android:pathPattern=".*\\.eml"/>
219 </intent-filter> 217 </intent-filter>
220 <intent-filter> 218 <intent-filter>
221 <action android:name="android.intent.action.MEDIA_SEARCH" /> 219 <action android:name="android.intent.action.MEDIA_SEARCH" />
222 <category android:name="android.intent.category.DEFAULT" /> 220 <category android:name="android.intent.category.DEFAULT" />
223 </intent-filter> 221 </intent-filter>
224 <intent-filter> 222 <intent-filter>
225 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS " /> 223 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS " />
226 <category android:name="android.intent.category.DEFAULT" /> 224 <category android:name="android.intent.category.DEFAULT" />
227 </intent-filter> 225 </intent-filter>
228 <intent-filter> 226 <intent-filter>
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 901 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
904 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 902 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
905 The downstream manifest replaces this block, and hence replaces the list of media route 903 The downstream manifest replaces this block, and hence replaces the list of media route
906 controllers with its own list. --> 904 controllers with its own list. -->
907 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 905 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
908 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 906 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
909 907
910 {% endblock %} 908 {% endblock %}
911 </application> 909 </application>
912 </manifest> 910 </manifest>
OLDNEW
« 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