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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 </intent-filter> | 578 </intent-filter> |
579 </receiver> | 579 </receiver> |
580 | 580 |
581 <service android:name="org.chromium.chrome.browser.media.remote.Notifica
tionTransportControl$ListenerService" /> | 581 <service android:name="org.chromium.chrome.browser.media.remote.Notifica
tionTransportControl$ListenerService" /> |
582 | 582 |
583 <!-- Receiver for lock screen input when casting --> | 583 <!-- Receiver for lock screen input when casting --> |
584 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr
eenTransportControl$MediaButtonIntentReceiver"/> | 584 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr
eenTransportControl$MediaButtonIntentReceiver"/> |
585 | 585 |
586 <service android:name="org.chromium.chrome.browser.media.MediaNotificati
onService" | 586 <service android:name="org.chromium.chrome.browser.media.MediaNotificati
onService" |
587 android:exported="false"/> | 587 android:exported="false"/> |
| 588 <service android:name="org.chromium.chrome.browser.media.ui.Notification
MediaPlaybackControls$ListenerService" |
| 589 android:exported="false"/> |
588 | 590 |
589 <meta-data android:name="com.google.android.gms.version" | 591 <meta-data android:name="com.google.android.gms.version" |
590 android:value="@integer/google_play_services_version" /> | 592 android:value="@integer/google_play_services_version" /> |
591 | 593 |
592 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 594 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
593 android:value="org.chromium.content.browser.SmartClipProvider"/> | 595 android:value="org.chromium.content.browser.SmartClipProvider"/> |
594 <meta-data android:name="org.chromium.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" | 596 <meta-data android:name="org.chromium.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" |
595 android:value="org.chromium.chrome.browser.ChromeServiceTabLa
uncher" /> | 597 android:value="org.chromium.chrome.browser.ChromeServiceTabLa
uncher" /> |
596 | 598 |
597 {% block extra_application_definitions %} | 599 {% block extra_application_definitions %} |
598 {% endblock %} | 600 {% endblock %} |
599 </application> | 601 </application> |
600 </manifest> | 602 </manifest> |
OLD | NEW |