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

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 1215713021: Reverted the code for the non-interactive audible tab notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@notification
Patch Set: Fixed indent Created 5 years, 3 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/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java » ('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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/> 618 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/>
619 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/> 619 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/>
620 </intent-filter> 620 </intent-filter>
621 </receiver> 621 </receiver>
622 622
623 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" /> 623 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" />
624 624
625 <!-- Receiver for lock screen input when casting --> 625 <!-- Receiver for lock screen input when casting -->
626 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr eenTransportControl$MediaButtonIntentReceiver"/> 626 <receiver android:name="org.chromium.chrome.browser.media.remote.LockScr eenTransportControl$MediaButtonIntentReceiver"/>
627 627
628 <service android:name="org.chromium.chrome.browser.media.MediaNotificati onService" 628 <service android:name="org.chromium.chrome.browser.media.MediaCaptureNot ificationService"
629 android:exported="false"/> 629 android:exported="false"/>
630 <service android:name="org.chromium.chrome.browser.media.ui.Notification MediaPlaybackControls$ListenerService" 630 <service android:name="org.chromium.chrome.browser.media.ui.Notification MediaPlaybackControls$ListenerService"
631 android:exported="false"> 631 android:exported="false">
632 <intent-filter> 632 <intent-filter>
633 <action android:name="android.intent.action.MEDIA_BUTTON" /> 633 <action android:name="android.intent.action.MEDIA_BUTTON" />
634 </intent-filter> 634 </intent-filter>
635 </service> 635 </service>
636 636
637 <receiver android:name="org.chromium.chrome.browser.media.ui.MediaButton Receiver"> 637 <receiver android:name="org.chromium.chrome.browser.media.ui.MediaButton Receiver">
638 <intent-filter> 638 <intent-filter>
(...skipping 19 matching lines...) Expand all
658 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 658 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
659 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 659 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
660 The downstream manifest replaces this block, and hence replaces the list of media route 660 The downstream manifest replaces this block, and hence replaces the list of media route
661 controllers with its own list. --> 661 controllers with its own list. -->
662 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 662 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
663 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 663 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
664 664
665 {% endblock %} 665 {% endblock %}
666 </application> 666 </application>
667 </manifest> 667 </manifest>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698