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

Unified Diff: chrome/android/java/AndroidManifest.xml

Issue 1652163002: Refactor Clank cast code to use MediaNotificationManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@MediaUi
Patch Set: Respond to final batch of nits Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/android/BUILD.gn ('k') | chrome/android/java/res/layout/remote_notification_bar.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/AndroidManifest.xml
diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
index 06ea45936729480e7f662e3601545780ce6aeafe..29430e8a6f48692f5cac66b38bd3bc2db6cc678a 100644
--- a/chrome/android/java/AndroidManifest.xml
+++ b/chrome/android/java/AndroidManifest.xml
@@ -657,11 +657,6 @@ android:value="true" />
</intent-filter>
</receiver>
- <service android:name="org.chromium.chrome.browser.media.remote.NotificationTransportControl$ListenerService" />
-
- <!-- Receiver for lock screen input when casting -->
- <receiver android:name="org.chromium.chrome.browser.media.remote.LockScreenTransportControl$MediaButtonIntentReceiver"/>
-
<service android:name="org.chromium.chrome.browser.media.MediaCaptureNotificationService"
android:exported="false"/>
<service android:name="org.chromium.chrome.browser.media.ui.MediaNotificationManager$PlaybackListenerService"
@@ -676,6 +671,12 @@ android:value="true" />
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</service>
+ <service android:name="org.chromium.chrome.browser.media.ui.MediaNotificationManager$CastListenerService"
+ android:exported="false">
+ <intent-filter>
+ <action android:name="android.intent.action.MEDIA_BUTTON" />
+ </intent-filter>
+ </service>
<receiver android:name="org.chromium.chrome.browser.media.ui.MediaNotificationManager$PlaybackMediaButtonReceiver">
@@ -688,6 +689,11 @@ android:value="true" />
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>
+ <receiver android:name="org.chromium.chrome.browser.media.ui.MediaNotificationManager$CastMediaButtonReceiver">
+ <intent-filter>
+ <action android:name="android.intent.action.MEDIA_BUTTON" />
+ </intent-filter>
+ </receiver>
<meta-data android:name="com.google.android.gms.version"
« no previous file with comments | « chrome/android/BUILD.gn ('k') | chrome/android/java/res/layout/remote_notification_bar.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698