| OLD | NEW |
| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 <intent-filter> | 159 <intent-filter> |
| 160 <action android:name="android.intent.action.MAIN" /> | 160 <action android:name="android.intent.action.MAIN" /> |
| 161 <category android:name="android.intent.category.DEFAULT" /> | 161 <category android:name="android.intent.category.DEFAULT" /> |
| 162 <category android:name="android.intent.category.LAUNCHER" /> | 162 <category android:name="android.intent.category.LAUNCHER" /> |
| 163 <category android:name="android.intent.category.BROWSABLE" /> | 163 <category android:name="android.intent.category.BROWSABLE" /> |
| 164 <category android:name="android.intent.category.APP_BROWSER" /> | 164 <category android:name="android.intent.category.APP_BROWSER" /> |
| 165 <category android:name="android.intent.category.NOTIFICATION_PRE
FERENCES" /> | 165 <category android:name="android.intent.category.NOTIFICATION_PRE
FERENCES" /> |
| 166 {% if channel in ['dev', 'canary', 'default'] %} | 166 {% if channel in ['dev', 'canary', 'default'] %} |
| 167 <category android:name="android.intent.category.MULTIWINDOW_LAUN
CHER" /> | 167 <category android:name="android.intent.category.MULTIWINDOW_LAUN
CHER" /> |
| 168 {% endif %} | 168 {% endif %} |
| 169 {% if enable_vr_shell == "true" %} | |
| 170 <!-- Show icon in Daydream app launcher. --> | |
| 171 <category android:name="com.google.intent.category.DAYDREAM" /> | |
| 172 {% endif %} | |
| 173 </intent-filter> | 169 </intent-filter> |
| 174 <!-- Matches the common case of intents with no MIME type. | 170 <!-- Matches the common case of intents with no MIME type. |
| 175 Make sure to keep in sync with the next filter. --> | 171 Make sure to keep in sync with the next filter. --> |
| 176 <intent-filter> | 172 <intent-filter> |
| 177 <action android:name="android.intent.action.VIEW" /> | 173 <action android:name="android.intent.action.VIEW" /> |
| 178 <category android:name="android.intent.category.DEFAULT" /> | 174 <category android:name="android.intent.category.DEFAULT" /> |
| 179 <category android:name="android.intent.category.BROWSABLE" /> | 175 <category android:name="android.intent.category.BROWSABLE" /> |
| 180 {% if channel in ['stable', 'default'] %}<data android:scheme="g
ooglechrome" />{% endif %} | 176 {% if channel in ['stable', 'default'] %}<data android:scheme="g
ooglechrome" />{% endif %} |
| 181 <data android:scheme="http" /> | 177 <data android:scheme="http" /> |
| 182 <data android:scheme="https" /> | 178 <data android:scheme="https" /> |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 915 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 911 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 916 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 912 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 917 The downstream manifest replaces this block, and hence replaces the
list of media route | 913 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 918 controllers with its own list. --> | 914 controllers with its own list. --> |
| 919 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 915 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 920 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 916 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 921 | 917 |
| 922 {% endblock %} | 918 {% endblock %} |
| 923 </application> | 919 </application> |
| 924 </manifest> | 920 </manifest> |
| OLD | NEW |