| 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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 </intent-filter> | 580 </intent-filter> |
| 581 </receiver> | 581 </receiver> |
| 582 | 582 |
| 583 <service android:name="org.chromium.chrome.browser.media.remote.Notifica
tionTransportControl$ListenerService" /> | 583 <service android:name="org.chromium.chrome.browser.media.remote.Notifica
tionTransportControl$ListenerService" /> |
| 584 | 584 |
| 585 <!-- Receiver for lock screen input when casting --> | 585 <!-- Receiver for lock screen input when casting --> |
| 586 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr
eenTransportControl$MediaButtonIntentReceiver"/> | 586 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr
eenTransportControl$MediaButtonIntentReceiver"/> |
| 587 | 587 |
| 588 <service android:name="org.chromium.chrome.browser.media.MediaNotificati
onService" | 588 <service android:name="org.chromium.chrome.browser.media.MediaNotificati
onService" |
| 589 android:exported="false"/> | 589 android:exported="false"/> |
| 590 <service android:name="org.chromium.chrome.browser.media.ui.Notification
MediaPlaybackControls$ListenerService" |
| 591 android:exported="false"/> |
| 590 | 592 |
| 591 <meta-data android:name="com.google.android.gms.version" | 593 <meta-data android:name="com.google.android.gms.version" |
| 592 android:value="@integer/google_play_services_version" /> | 594 android:value="@integer/google_play_services_version" /> |
| 593 | 595 |
| 594 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 596 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
| 595 android:value="org.chromium.content.browser.SmartClipProvider"/> | 597 android:value="org.chromium.content.browser.SmartClipProvider"/> |
| 596 <meta-data android:name="org.chromium.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" | 598 <meta-data android:name="org.chromium.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" |
| 597 android:value="org.chromium.chrome.browser.ChromeServiceTabLa
uncher" /> | 599 android:value="org.chromium.chrome.browser.ChromeServiceTabLa
uncher" /> |
| 598 | 600 |
| 599 {% block extra_application_definitions %} | 601 {% block extra_application_definitions %} |
| 600 | 602 |
| 601 <!-- Media route controllers to use for remote playback (cast). | 603 <!-- Media route controllers to use for remote playback (cast). |
| 602 This is here, rather than in code, since it varies between upstream
and downstream, | 604 This is here, rather than in code, since it varies between upstream
and downstream, |
| 603 yet we need this list of classes in the notification service, which
belongs upstream | 605 yet we need this list of classes in the notification service, which
belongs upstream |
| 604 and doesn't run the downstream startup code. The Cast code will, fo
r each media element, | 606 and doesn't run the downstream startup code. The Cast code will, fo
r each media element, |
| 605 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 607 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 606 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 608 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 607 The downstream manifest replaces this block, and hence replaces the
list of media route | 609 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 608 controllers with its own list. --> | 610 controllers with its own list. --> |
| 609 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 611 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 610 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 612 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 611 | 613 |
| 612 {% endblock %} | 614 {% endblock %} |
| 613 </application> | 615 </application> |
| 614 </manifest> | 616 </manifest> |
| OLD | NEW |