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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 <!-- This activity is to expose the PhysicalWeb Share option via the gen
eric Android share action. --> | 597 <!-- This activity is to expose the PhysicalWeb Share option via the gen
eric Android share action. --> |
598 <activity | 598 <activity |
599 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha
reEntryActivity" | 599 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha
reEntryActivity" |
600 android:label="@string/physical_web_share_entry_title" | 600 android:label="@string/physical_web_share_entry_title" |
601 android:excludeFromRecents="true" | 601 android:excludeFromRecents="true" |
602 android:noHistory="true" | 602 android:noHistory="true" |
603 android:theme="@android:style/Theme.Translucent.NoTitleBar" | 603 android:theme="@android:style/Theme.Translucent.NoTitleBar" |
604 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > | 604 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize" > |
605 </activity> | 605 </activity> |
606 | 606 |
| 607 <!-- Activities for Browser Actions --> |
| 608 {% if channel in ['default'] %} |
| 609 <activity android:name="org.chromium.chrome.browser.browseractions.Brows
erActionActivity" |
| 610 android:theme="@style/FullscreenTransparentActivityTheme" |
| 611 android:exported="true" |
| 612 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz
e|mcc|mnc|screenLayout|smallestScreenSize"> |
| 613 <intent-filter> |
| 614 <action android:name="android.support.customtabs.browseractions.
browser_action_open" /> |
| 615 <category android:name="android.intent.category.DEFAULT" /> |
| 616 <data android:scheme="http" /> |
| 617 <data android:scheme="https" /> |
| 618 </intent-filter> |
| 619 </activity> |
| 620 {% endif %} |
| 621 |
607 <!-- Service for Broadcasting a Physical Web URL --> | 622 <!-- Service for Broadcasting a Physical Web URL --> |
608 <service | 623 <service |
609 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro
adcastService" | 624 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro
adcastService" |
610 android:exported="false"> | 625 android:exported="false"> |
611 </service> | 626 </service> |
612 | 627 |
613 <!-- Providers for chrome data. --> | 628 <!-- Providers for chrome data. --> |
614 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" | 629 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows
erProvider" |
615 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" | 630 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{
manifest_package }}.browser;{{ manifest_package }}" |
616 android:exported="true"> | 631 android:exported="true"> |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. | 968 choose the first MediaRouteController that can play it, so the orde
r of the list can be important. |
954 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. | 969 The most specific MediaRouteControllers should be listed first, fol
lowed by more generic ones. |
955 The downstream manifest replaces this block, and hence replaces the
list of media route | 970 The downstream manifest replaces this block, and hence replaces the
list of media route |
956 controllers with its own list. --> | 971 controllers with its own list. --> |
957 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" | 972 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE
RS" |
958 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> | 973 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia
RouteController"/> |
959 | 974 |
960 {% endblock %} | 975 {% endblock %} |
961 </application> | 976 </application> |
962 </manifest> | 977 </manifest> |
OLD | NEW |