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

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

Powered by Google App Engine
This is Rietveld 408576698