| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 <service android:name="org.chromium.chrome.browser.download.DownloadNoti
ficationService" | 467 <service android:name="org.chromium.chrome.browser.download.DownloadNoti
ficationService" |
| 468 android:exported="false"> | 468 android:exported="false"> |
| 469 </service> | 469 </service> |
| 470 | 470 |
| 471 <!-- Precache service. | 471 <!-- Precache service. |
| 472 Not enabled on Stable or Work channels. This is currently an experiment | 472 Not enabled on Stable or Work channels. This is currently an experiment |
| 473 on beta channel (crbug/309216) but the mere existence of these can lead | 473 on beta channel (crbug/309216) but the mere existence of these can lead |
| 474 to some process churn, so omit them while not relevant. b/24776372 | 474 to some process churn, so omit them while not relevant. b/24776372 |
| 475 --> | 475 --> |
| 476 {% if channel in ['default', 'canary', 'dev', 'beta'] %} | 476 {% if channel in ['default', 'canary', 'dev', 'beta'] %} |
| 477 <service android:name="org.chromium.chrome.browser.precache.PrecacheServ
ice" | 477 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheBoo
tReceiver"> |
| 478 android:exported="false" /> | |
| 479 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer
viceLauncher"> | |
| 480 <intent-filter> | 478 <intent-filter> |
| 481 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> | 479 <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 482 <action android:name="android.intent.action.ACTION_POWER_DISCONN
ECTED"/> | |
| 483 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | |
| 484 </intent-filter> | 480 </intent-filter> |
| 485 </receiver> | 481 </receiver> |
| 486 {% endif %} | 482 {% endif %} |
| 487 | 483 |
| 488 <service android:name="org.chromium.components.variations.firstrun.Varia
tionsSeedService" | 484 <service android:name="org.chromium.components.variations.firstrun.Varia
tionsSeedService" |
| 489 android:exported="false" /> | 485 android:exported="false" /> |
| 490 | 486 |
| 491 <receiver android:name="org.chromium.components.variations.firstrun.Vari
ationsSeedServiceLauncher" | 487 <receiver android:name="org.chromium.components.variations.firstrun.Vari
ationsSeedServiceLauncher" |
| 492 android:permission="{{ manifest_package }}.TOS_ACKED"> | 488 android:permission="{{ manifest_package }}.TOS_ACKED"> |
| 493 <intent-filter> | 489 <intent-filter> |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 759 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 764 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 760 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 765 The downstream manifest replaces this block, and hence replaces the
list of media route | 761 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 766 controllers with its own list. --> | 762 controllers with its own list. --> |
| 767 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 763 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 768 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 764 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 769 | 765 |
| 770 {% endblock %} | 766 {% endblock %} |
| 771 </application> | 767 </application> |
| 772 </manifest> | 768 </manifest> |
| OLD | NEW |