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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 </receiver> | 461 </receiver> |
462 {% endif %} | 462 {% endif %} |
463 | 463 |
464 <receiver android:name="org.chromium.chrome.browser.firstrun.ToSAckedRec
eiver" | 464 <receiver android:name="org.chromium.chrome.browser.firstrun.ToSAckedRec
eiver" |
465 android:permission="{{ manifest_package }}.TOS_ACKED"> | 465 android:permission="{{ manifest_package }}.TOS_ACKED"> |
466 <intent-filter> | 466 <intent-filter> |
467 <action android:name="{{ manifest_package }}.TOS_ACKED" /> | 467 <action android:name="{{ manifest_package }}.TOS_ACKED" /> |
468 </intent-filter> | 468 </intent-filter> |
469 </receiver> | 469 </receiver> |
470 | 470 |
471 <activity android:name="org.chromium.chrome.browser.bookmark.ShortcutAct
ivity" | |
472 android:enabled="{{ 'true' if channel in ['stable', 'default'] else
'false' }}" | |
473 android:label="@string/bookmark_shortcut_name" | |
474 android:icon="@mipmap/bookmark_shortcut_icon" | |
475 android:theme="@style/ThemeWithActionBar" | |
476 android:hardwareAccelerated="true"> | |
477 | |
478 <intent-filter> | |
479 <action android:name="android.intent.action.CREATE_SHORTCUT" /> | |
480 <category android:name="android.intent.category.DEFAULT" /> | |
481 </intent-filter> | |
482 </activity> | |
483 | |
484 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar
ks.BookmarkThumbnailWidgetProvider" | 471 <receiver android:name="com.google.android.apps.chrome.appwidget.bookmar
ks.BookmarkThumbnailWidgetProvider" |
485 android:enabled="{{ 'true' if channel in ['stable', 'default'] else
'false' }}" | 472 android:enabled="{{ 'true' if channel in ['stable', 'default'] else
'false' }}" |
486 android:label="@string/bookmarks"> | 473 android:label="@string/bookmarks"> |
487 <intent-filter> | 474 <intent-filter> |
488 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> | 475 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"
/> |
489 <action android:name=".BOOKMARK_APPWIDGET_UPDATE" /> | 476 <action android:name=".BOOKMARK_APPWIDGET_UPDATE" /> |
490 </intent-filter> | 477 </intent-filter> |
491 <meta-data | 478 <meta-data |
492 android:name="android.appwidget.provider" | 479 android:name="android.appwidget.provider" |
493 android:resource="@xml/bookmark_thumbnail_widget_info" /> | 480 android:resource="@xml/bookmark_thumbnail_widget_info" /> |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 658 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
672 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 659 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
673 The downstream manifest replaces this block, and hence replaces the
list of media route | 660 The downstream manifest replaces this block, and hence replaces the
list of media route |
674 controllers with its own list. --> | 661 controllers with its own list. --> |
675 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 662 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
676 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 663 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
677 | 664 |
678 {% endblock %} | 665 {% endblock %} |
679 </application> | 666 </application> |
680 </manifest> | 667 </manifest> |
OLD | NEW |