Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

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 Mounir's comments Created 5 years, 6 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 </intent-filter> 571 </intent-filter>
572 </receiver> 572 </receiver>
573 573
574 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" /> 574 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" />
575 575
576 <!-- Receiver for lock screen input when casting --> 576 <!-- Receiver for lock screen input when casting -->
577 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr eenTransportControl$MediaButtonIntentReceiver"/> 577 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr eenTransportControl$MediaButtonIntentReceiver"/>
578 578
579 <service android:name="org.chromium.chrome.browser.media.MediaNotificati onService" 579 <service android:name="org.chromium.chrome.browser.media.MediaNotificati onService"
580 android:exported="false"/> 580 android:exported="false"/>
581 <service android:name="org.chromium.chrome.browser.media.ui.Notification MediaPlaybackControls$ListenerService"
582 android:exported="false"/>
581 583
582 <meta-data android:name="com.google.android.gms.version" 584 <meta-data android:name="com.google.android.gms.version"
583 android:value="@integer/google_play_services_version" /> 585 android:value="@integer/google_play_services_version" />
584 586
585 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 587 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
586 android:value="org.chromium.content.browser.SmartClipProvider"/> 588 android:value="org.chromium.content.browser.SmartClipProvider"/>
587 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER" 589 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER"
588 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" /> 590 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" />
589 591
590 {% block extra_application_definitions %} 592 {% block extra_application_definitions %}
591 {% endblock %} 593 {% endblock %}
592 </application> 594 </application>
593 </manifest> 595 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698