Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 | 4 |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 10 package="org.chromium.chrome.shell"> | 10 package="org.chromium.chrome.shell"> |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 131 android:enabled="true"/> | 131 android:enabled="true"/> |
| 132 <receiver android:exported="false" | 132 <receiver android:exported="false" |
| 133 android:name="com.google.ipc.invalidation.ticl.android2.channe l.AndroidMessageReceiverService$Receiver"> | 133 android:name="com.google.ipc.invalidation.ticl.android2.channe l.AndroidMessageReceiverService$Receiver"> |
| 134 <intent-filter> | 134 <intent-filter> |
| 135 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " /> | 135 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " /> |
| 136 </intent-filter> | 136 </intent-filter> |
| 137 </receiver> | 137 </receiver> |
| 138 | 138 |
| 139 <!-- GCMDriver multiplexed GCM receiver --> | 139 <!-- GCMDriver multiplexed GCM receiver --> |
| 140 <service android:exported="false" | 140 <service android:exported="false" |
| 141 android:name="org.chromium.components.gcm_driver.GCMListener"/> | 141 android:name="org.chromium.chrome.browser.services.gcm.GCMListe ner"/> |
|
Peter Beverloo
2015/04/10 11:52:02
We'll need to update this on our private manifest
Nicolas Zea
2015/04/10 17:10:29
Acknowledged.
| |
| 142 <receiver android:exported="false" | 142 <receiver android:exported="false" |
| 143 android:name="org.chromium.components.gcm_driver.GCMListener$R eceiver"> | 143 android:name="org.chromium.chrome.browser.services.gcm.GCMList ener$Receiver"> |
| 144 <intent-filter> | 144 <intent-filter> |
| 145 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " /> | 145 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " /> |
| 146 </intent-filter> | 146 </intent-filter> |
| 147 </receiver> | 147 </receiver> |
| 148 | 148 |
| 149 <!-- Android Notification service listener --> | 149 <!-- Android Notification service listener --> |
| 150 <service android:exported="false" | 150 <service android:exported="false" |
| 151 android:name="org.chromium.chrome.browser.notifications.Notific ationService"/> | 151 android:name="org.chromium.chrome.browser.notifications.Notific ationService"/> |
| 152 <receiver android:exported="false" | 152 <receiver android:exported="false" |
| 153 android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver"> | 153 android:name="org.chromium.chrome.browser.notifications.Notifi cationService$Receiver"> |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 221 <!-- Media route controllers to use for remote playback (cast). | 221 <!-- Media route controllers to use for remote playback (cast). |
| 222 This is here, rather than in code, since it varies between upstream and downstream, | 222 This is here, rather than in code, since it varies between upstream and downstream, |
| 223 yet we need this list of classes in the notification service, which belongs upstream | 223 yet we need this list of classes in the notification service, which belongs upstream |
| 224 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element, | 224 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element, |
| 225 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 225 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
| 226 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones --> | 226 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones --> |
| 227 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 227 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 228 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 228 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 229 </application> | 229 </application> |
| 230 </manifest> | 230 </manifest> |
| OLD | NEW |