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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ ice" | 210 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ ice" |
| 211 android:exported="false" /> | 211 android:exported="false" /> |
| 212 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer viceLauncher"> | 212 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer viceLauncher"> |
| 213 <intent-filter> | 213 <intent-filter> |
| 214 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/> | 214 <action android:name="android.intent.action.ACTION_POWER_CONNECT ED"/> |
| 215 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/> | 215 <action android:name="android.intent.action.ACTION_POWER_DISCONN ECTED"/> |
| 216 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 216 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| 217 </intent-filter> | 217 </intent-filter> |
| 218 </receiver> | 218 </receiver> |
| 219 | 219 |
| 220 <!-- Service for the media playback control notification --> | |
| 221 <service android:name="org.chromium.chrome.browser.media.ui.Notification MediaPlaybackControl$ListenerService" /> | |
|
Ted C
2015/06/26 00:43:55
exported="false" here?
whywhat
2015/06/26 19:29:32
Done.
| |
| 222 | |
| 220 <!-- Activity, service, and meta-data to support casting to Chromecast - -> | 223 <!-- Activity, service, and meta-data to support casting to Chromecast - -> |
| 221 | 224 |
| 222 <!-- Expanded controller activity is displayed when the Cast Notificatio n is clicked --> | 225 <!-- Expanded controller activity is displayed when the Cast Notificatio n is clicked --> |
| 223 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity" | 226 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity" |
| 224 android:theme="@style/MainTheme" | 227 android:theme="@style/MainTheme" |
| 225 android:label="Chrome.ExpandedControllerActivity" | 228 android:label="Chrome.ExpandedControllerActivity" |
| 226 android:hardwareAccelerated="true" | 229 android:hardwareAccelerated="true" |
| 227 android:launchMode="singleTask" | 230 android:launchMode="singleTask" |
| 228 android:noHistory="true" | 231 android:noHistory="true" |
| 229 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e" | 232 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e" |
| 230 android:excludeFromRecents="true"> | 233 android:excludeFromRecents="true"> |
| 231 </activity> | 234 </activity> |
| 232 | 235 |
| 233 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" /> | 236 <service android:name="org.chromium.chrome.browser.media.remote.Notifica tionTransportControl$ListenerService" /> |
| 234 | 237 |
| 235 <!-- Media route controllers to use for remote playback (cast). | 238 <!-- Media route controllers to use for remote playback (cast). |
| 236 This is here, rather than in code, since it varies between upstream and downstream, | 239 This is here, rather than in code, since it varies between upstream and downstream, |
| 237 yet we need this list of classes in the notification service, which belongs upstream | 240 yet we need this list of classes in the notification service, which belongs upstream |
| 238 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element, | 241 and doesn't run the downstream Clank startup code. The Cast code wi ll, for each media element, |
| 239 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 242 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
| 240 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones --> | 243 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones --> |
| 241 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 244 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 242 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 245 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 243 </application> | 246 </application> |
| 244 </manifest> | 247 </manifest> |
| OLD | NEW |