| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 182 |
| 183 <!-- Broadcast receiver that will be notified of account changes. --> | 183 <!-- Broadcast receiver that will be notified of account changes. --> |
| 184 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> | 184 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> |
| 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.components.service_tab_launcher.SE
RVICE_TAB_LAUNCHER" |
| 193 android:value="org.chromium.chrome.shell.ChromeShellServiceTa
bLauncher" /> | 193 android:value="org.chromium.chrome.shell.ChromeShellServiceTa
bLauncher" /> |
| 194 | 194 |
| 195 <!-- Precache service. --> | 195 <!-- Precache service. --> |
| 196 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ
ice" | 196 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ
ice" |
| 197 android:exported="false" /> | 197 android:exported="false" /> |
| 198 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer
viceLauncher"> | 198 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer
viceLauncher"> |
| 199 <intent-filter> | 199 <intent-filter> |
| 200 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> | 200 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> |
| 201 <action android:name="android.intent.action.ACTION_POWER_DISCONN
ECTED"/> | 201 <action android:name="android.intent.action.ACTION_POWER_DISCONN
ECTED"/> |
| 202 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 202 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| (...skipping 18 matching lines...) Expand all 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 |