| 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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 <intent-filter> | 539 <intent-filter> |
| 540 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> | 540 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> |
| 541 </intent-filter> | 541 </intent-filter> |
| 542 </receiver> | 542 </receiver> |
| 543 | 543 |
| 544 <!-- Download service --> | 544 <!-- Download service --> |
| 545 <service android:name="org.chromium.chrome.browser.download.DownloadNoti
ficationService" | 545 <service android:name="org.chromium.chrome.browser.download.DownloadNoti
ficationService" |
| 546 android:exported="false"> | 546 android:exported="false"> |
| 547 </service> | 547 </service> |
| 548 | 548 |
| 549 <!-- Precache service. | |
| 550 Not enabled on Stable or Work channels. This is currently an experiment | |
| 551 on beta channel (crbug/309216) but the mere existence of these can lead | |
| 552 to some process churn, so omit them while not relevant. b/24776372 | |
| 553 --> | |
| 554 {% if channel in ['default', 'canary', 'dev', 'beta'] %} | |
| 555 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheBoo
tReceiver"> | |
| 556 <intent-filter> | |
| 557 <action android:name="android.intent.action.BOOT_COMPLETED"/> | |
| 558 </intent-filter> | |
| 559 </receiver> | |
| 560 {% endif %} | |
| 561 | |
| 562 <service android:name="org.chromium.components.variations.firstrun.Varia
tionsSeedService" | 549 <service android:name="org.chromium.components.variations.firstrun.Varia
tionsSeedService" |
| 563 android:exported="false" /> | 550 android:exported="false" /> |
| 564 | 551 |
| 565 <receiver android:name="org.chromium.components.variations.firstrun.Vari
ationsSeedServiceLauncher" | 552 <receiver android:name="org.chromium.components.variations.firstrun.Vari
ationsSeedServiceLauncher" |
| 566 android:permission="{{ manifest_package }}.TOS_ACKED"> | 553 android:permission="{{ manifest_package }}.TOS_ACKED"> |
| 567 <intent-filter> | 554 <intent-filter> |
| 568 <action android:name="{{ manifest_package }}.TOS_ACKED" /> | 555 <action android:name="{{ manifest_package }}.TOS_ACKED" /> |
| 569 </intent-filter> | 556 </intent-filter> |
| 570 </receiver> | 557 </receiver> |
| 571 | 558 |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 840 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 827 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 841 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 828 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 842 The downstream manifest replaces this block, and hence replaces the
list of media route | 829 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 843 controllers with its own list. --> | 830 controllers with its own list. --> |
| 844 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 831 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 845 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 832 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 846 | 833 |
| 847 {% endblock %} | 834 {% endblock %} |
| 848 </application> | 835 </application> |
| 849 </manifest> | 836 </manifest> |
| OLD | NEW |