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