Chromium Code Reviews| 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> |
|
mlamouri (slow - plz ping)
2016/02/03 14:47:18
You are adding these classes in the other CL. Shou
aberent
2016/02/04 14:36:47
Maybe should have been, but the other one is now l
|
| <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" |