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

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2081153005: [Offline Page] Offline page sharing implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo 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 unified diff | Download patch
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 <data android:scheme="https" /> 177 <data android:scheme="https" />
178 <data android:scheme="about" /> 178 <data android:scheme="about" />
179 <data android:scheme="content" /> 179 <data android:scheme="content" />
180 <data android:scheme="javascript" /> 180 <data android:scheme="javascript" />
181 <data android:mimeType="text/html"/> 181 <data android:mimeType="text/html"/>
182 <data android:mimeType="text/plain"/> 182 <data android:mimeType="text/plain"/>
183 <data android:mimeType="application/xhtml+xml"/> 183 <data android:mimeType="application/xhtml+xml"/>
184 </intent-filter> 184 </intent-filter>
185 <!-- MHTML support, used for snapshots --> 185 <!-- MHTML support, used for snapshots -->
186 <intent-filter> 186 <intent-filter>
187 <action android:name="android.intent.action.VIEW" /> 187 <action android:name="android.intent.action.VIEW" />
fgorski 2016/06/28 20:03:22 nit: Do you need that extra space?
Vivian 2016/07/27 23:44:10 Deprecated. Changes on this file is moved to a sep
188 <category android:name="android.intent.category.DEFAULT" /> 188 <category android:name="android.intent.category.DEFAULT" />
189 <data android:scheme="file" android:mimeType="multipart/related" /> 189 <data android:scheme="file" android:mimeType="multipart/related" />
190 </intent-filter> 190 </intent-filter>
191 <intent-filter> 191 <intent-filter>
192 <action android:name="android.intent.action.MEDIA_SEARCH" /> 192 <action android:name="android.intent.action.MEDIA_SEARCH" />
193 <category android:name="android.intent.category.DEFAULT" /> 193 <category android:name="android.intent.category.DEFAULT" />
194 </intent-filter> 194 </intent-filter>
195 <intent-filter> 195 <intent-filter>
196 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS " /> 196 <action android:name="android.speech.action.VOICE_SEARCH_RESULTS " />
197 <category android:name="android.intent.category.DEFAULT" /> 197 <category android:name="android.intent.category.DEFAULT" />
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 845 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
846 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 846 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
847 The downstream manifest replaces this block, and hence replaces the list of media route 847 The downstream manifest replaces this block, and hence replaces the list of media route
848 controllers with its own list. --> 848 controllers with its own list. -->
849 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 849 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
850 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 850 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
851 851
852 {% endblock %} 852 {% endblock %}
853 </application> 853 </application>
854 </manifest> 854 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698