| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 android:exported="false" /> | 455 android:exported="false" /> |
| 456 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer
viceLauncher"> | 456 <receiver android:name="org.chromium.chrome.browser.precache.PrecacheSer
viceLauncher"> |
| 457 <intent-filter> | 457 <intent-filter> |
| 458 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> | 458 <action android:name="android.intent.action.ACTION_POWER_CONNECT
ED"/> |
| 459 <action android:name="android.intent.action.ACTION_POWER_DISCONN
ECTED"/> | 459 <action android:name="android.intent.action.ACTION_POWER_DISCONN
ECTED"/> |
| 460 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> | 460 <action android:name="android.net.conn.CONNECTIVITY_CHANGE" /> |
| 461 </intent-filter> | 461 </intent-filter> |
| 462 </receiver> | 462 </receiver> |
| 463 {% endif %} | 463 {% endif %} |
| 464 | 464 |
| 465 <service android:name="org.chromium.components.variations.firstrun.Varia
tionsSeedService" |
| 466 android:exported="false" /> |
| 467 |
| 468 <receiver android:name="org.chromium.components.variations.firstrun.Vari
ationsSeedServiceLauncher" |
| 469 android:permission="{{ manifest_package }}.TOS_ACKED"> |
| 470 <intent-filter> |
| 471 <action android:name="{{ manifest_package }}.TOS_ACKED" /> |
| 472 </intent-filter> |
| 473 </receiver> |
| 474 |
| 465 <receiver android:name="org.chromium.chrome.browser.firstrun.ToSAckedRec
eiver" | 475 <receiver android:name="org.chromium.chrome.browser.firstrun.ToSAckedRec
eiver" |
| 466 android:permission="{{ manifest_package }}.TOS_ACKED"> | 476 android:permission="{{ manifest_package }}.TOS_ACKED"> |
| 467 <intent-filter> | 477 <intent-filter> |
| 468 <action android:name="{{ manifest_package }}.TOS_ACKED" /> | 478 <action android:name="{{ manifest_package }}.TOS_ACKED" /> |
| 469 </intent-filter> | 479 </intent-filter> |
| 470 </receiver> | 480 </receiver> |
| 471 | 481 |
| 472 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar
ks.BookmarkThumbnailWidgetProvider" | 482 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar
ks.BookmarkThumbnailWidgetProvider" |
| 473 android:label="@string/bookmarks"> | 483 android:label="@string/bookmarks"> |
| 474 <intent-filter> | 484 <intent-filter> |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 675 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
| 666 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 676 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
| 667 The downstream manifest replaces this block, and hence replaces the
list of media route | 677 The downstream manifest replaces this block, and hence replaces the
list of media route |
| 668 controllers with its own list. --> | 678 controllers with its own list. --> |
| 669 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 679 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
| 670 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 680 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
| 671 | 681 |
| 672 {% endblock %} | 682 {% endblock %} |
| 673 </application> | 683 </application> |
| 674 </manifest> | 684 </manifest> |
| OLD | NEW |