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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 <service android:exported="false" | 155 <service android:exported="false" |
156 android:name="org.chromium.chrome.browser.notifications.Notific
ationService"/> | 156 android:name="org.chromium.chrome.browser.notifications.Notific
ationService"/> |
157 <receiver android:exported="false" | 157 <receiver android:exported="false" |
158 android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver"> | 158 android:name="org.chromium.chrome.browser.notifications.Notifi
cationService$Receiver"> |
159 <intent-filter> | 159 <intent-filter> |
160 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> | 160 <action android:name="org.chromium.chrome.browser.notifications.
CLICK_NOTIFICATION" /> |
161 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> | 161 <action android:name="org.chromium.chrome.browser.notifications.
CLOSE_NOTIFICATION" /> |
162 </intent-filter> | 162 </intent-filter> |
163 </receiver> | 163 </receiver> |
164 | 164 |
165 <!-- Service Worker Background Sync service listener --> | 165 <!-- Service Worker Background Sync GCM scheduler task --> |
166 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch
erService" | 166 <service android:name="org.chromium.content.browser.BackgroundSyncLaunch
erService" |
167 android:exported="false" /> | 167 android:permission="com.google.android.gms.permission.BIND_NETWORK_T
ASK_SERVICE" |
168 <receiver android:name="org.chromium.content.browser.BackgroundSyncLaunc
herService$Receiver"> | 168 android:exported="true"> |
169 <intent-filter> | 169 <intent-filter> |
170 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 170 <action android:name="com.google.android.gms.gcm.ACTION_TASK_REA
DY" /> |
171 </intent-filter> | 171 </intent-filter> |
172 </receiver> | 172 </service> |
173 | 173 |
174 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide
r" | 174 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide
r" |
175 android:authorities="org.chromium.chrome.shell" | 175 android:authorities="org.chromium.chrome.shell" |
176 android:exported="true" /> | 176 android:exported="true" /> |
177 | 177 |
178 <!-- Provider for FileProvider. --> | 178 <!-- Provider for FileProvider. --> |
179 <provider android:name="android.support.v4.content.FileProvider" | 179 <provider android:name="android.support.v4.content.FileProvider" |
180 android:authorities="org.chromium.chrome.shell.FileProvider" | 180 android:authorities="org.chromium.chrome.shell.FileProvider" |
181 android:exported="false" | 181 android:exported="false" |
182 android:grantUriPermissions="true"> | 182 android:grantUriPermissions="true"> |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 <!-- Media route controllers to use for remote playback (cast). | 239 <!-- Media route controllers to use for remote playback (cast). |
240 This is here, rather than in code, since it varies between upstream
and downstream, | 240 This is here, rather than in code, since it varies between upstream
and downstream, |
241 yet we need this list of classes in the notification service, which
belongs upstream | 241 yet we need this list of classes in the notification service, which
belongs upstream |
242 and doesn't run the downstream Clank startup code. The Cast code wi
ll, for each media element, | 242 and doesn't run the downstream Clank startup code. The Cast code wi
ll, for each media element, |
243 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 243 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
244 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones --> | 244 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones --> |
245 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 245 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
246 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 246 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
247 </application> | 247 </application> |
248 </manifest> | 248 </manifest> |
OLD | NEW |