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

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: Rebased the change 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
« no previous file with comments | « no previous file | chrome/android/java/res/layout/playback_notification_bar.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/res/layout/playback_notification_bar.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698