| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 | 5 |
| 6 <!-- | 6 <!-- |
| 7 Note: This is a jinja2 template, processed at build time into the final manifest
. | 7 Note: This is a jinja2 template, processed at build time into the final manifest
. |
| 8 | 8 |
| 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden | 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden |
| 10 by a child template that "extends" this file. | 10 by a child template that "extends" this file. |
| (...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 <action android:name="com.google.android.c2dm.intent.RECEIVE" /> | 704 <action android:name="com.google.android.c2dm.intent.RECEIVE" /> |
| 705 </intent-filter> | 705 </intent-filter> |
| 706 </service> | 706 </service> |
| 707 <meta-data android:name="ipc.invalidation.ticl.gcm_upstream_service_clas
s" | 707 <meta-data android:name="ipc.invalidation.ticl.gcm_upstream_service_clas
s" |
| 708 android:value="org.chromium.chrome.browser.services.gcm.Invalidation
GcmUpstreamSender" /> | 708 android:value="org.chromium.chrome.browser.services.gcm.Invalidation
GcmUpstreamSender" /> |
| 709 <service android:name="org.chromium.chrome.browser.services.gcm.Invalida
tionGcmUpstreamSender" | 709 <service android:name="org.chromium.chrome.browser.services.gcm.Invalida
tionGcmUpstreamSender" |
| 710 android:exported="false"/> | 710 android:exported="false"/> |
| 711 | 711 |
| 712 <!-- Notification service for sync. --> | 712 <!-- Notification service for sync. --> |
| 713 <meta-data android:name="ipc.invalidation.ticl.listener_service_class" | 713 <meta-data android:name="ipc.invalidation.ticl.listener_service_class" |
| 714 android:value="org.chromium.components.invalidation.InvalidationClie
ntService"/> | 714 android:value="org.chromium.chrome.browser.invalidation.ChromeInvali
dationClientService"/> |
| 715 <service android:name="org.chromium.components.invalidation.Invalidation
ClientService" | 715 <service android:name="org.chromium.chrome.browser.invalidation.ChromeIn
validationClientService" |
| 716 android:exported="false"> | 716 android:exported="false"> |
| 717 <intent-filter> | 717 <intent-filter> |
| 718 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQUE
ST"/> | 718 <action android:name="com.google.ipc.invalidation.AUTH_TOKEN_REQUE
ST"/> |
| 719 </intent-filter> | 719 </intent-filter> |
| 720 </service> | 720 </service> |
| 721 <service android:name="com.google.ipc.invalidation.ticl.android2.TiclSer
vice" | 721 <service android:name="com.google.ipc.invalidation.ticl.android2.TiclSer
vice" |
| 722 android:exported="false"/> | 722 android:exported="false"/> |
| 723 <service android:name="com.google.ipc.invalidation.ticl.android2.channel
.AndroidMessageSenderService" | 723 <service android:name="com.google.ipc.invalidation.ticl.android2.channel
.AndroidMessageSenderService" |
| 724 android:exported="false"/> | 724 android:exported="false"/> |
| 725 <receiver android:name="com.google.ipc.invalidation.ticl.android2.Androi
dInternalScheduler$AlarmReceiver" | 725 <receiver android:name="com.google.ipc.invalidation.ticl.android2.Androi
dInternalScheduler$AlarmReceiver" |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 917 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 918 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 918 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 919 The downstream manifest replaces this block, and hence replaces the
list of media route | 919 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 920 controllers with its own list. --> | 920 controllers with its own list. --> |
| 921 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 921 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 922 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 922 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 923 | 923 |
| 924 {% endblock %} | 924 {% endblock %} |
| 925 </application> | 925 </application> |
| 926 </manifest> | 926 </manifest> |
| OLD | NEW |