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

Powered by Google App Engine
This is Rietveld 408576698