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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 <intent-filter> | 185 <intent-filter> |
186 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> | 186 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> |
187 </intent-filter> | 187 </intent-filter> |
188 </receiver> | 188 </receiver> |
189 | 189 |
190 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 190 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
191 android:value="org.chromium.content.browser.SmartClipProvider
" /> | 191 android:value="org.chromium.content.browser.SmartClipProvider
" /> |
192 <meta-data android:name="org.chromium.chrome.browser.SERVICE_TAB_LAUNCHE
R" | 192 <meta-data android:name="org.chromium.chrome.browser.SERVICE_TAB_LAUNCHE
R" |
193 android:value="org.chromium.chrome.shell.ChromeShellServiceTa
bLauncher" /> | 193 android:value="org.chromium.chrome.shell.ChromeShellServiceTa
bLauncher" /> |
194 | 194 |
| 195 <!-- Activity, service, and meta-data to support casting to Chromecast -
-> |
| 196 |
| 197 <!-- Expanded controller activity is displayed when the Cast Notificatio
n is clicked --> |
| 198 <activity android:name="org.chromium.chrome.browser.media.remote.Expande
dControllerActivity" |
| 199 android:theme="@style/MainTheme" |
| 200 android:label="Chrome.ExpandedControllerActivity" |
| 201 android:hardwareAccelerated="true" |
| 202 android:launchMode="singleTask" |
| 203 android:noHistory="true" |
| 204 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e" |
| 205 android:excludeFromRecents="true"> |
| 206 </activity> |
| 207 |
| 208 <service android:name="org.chromium.chrome.browser.media.remote.Notifica
tionTransportControl$ListenerService" /> |
| 209 |
| 210 <!-- Media route controllers to use for remote playback (cast). |
| 211 This is here, rather than in code, since it varies between upstream
and downstream, |
| 212 yet we need this list of classes in the notification service, which
belongs upstream |
| 213 and doesn't run the downstream Clank startup code. The Cast code wi
ll, for each media element, |
| 214 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 215 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones --> |
| 216 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 217 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 218 |
| 219 |
195 </application> | 220 </application> |
196 </manifest> | 221 </manifest> |
OLD | NEW |