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" | |
Ted C
2017/04/24 20:23:17
any reason we don't use @android:style/Theme.Trans
ltian
2017/04/24 23:59:28
The BrowserActionActivity extends AsyncInitializat
| |
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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
955 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 970 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 971 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
957 The downstream manifest replaces this block, and hence replaces the list of media route | 972 The downstream manifest replaces this block, and hence replaces the list of media route |
958 controllers with its own list. --> | 973 controllers with its own list. --> |
959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 974 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 975 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
961 | 976 |
962 {% endblock %} | 977 {% endblock %} |
963 </application> | 978 </application> |
964 </manifest> | 979 </manifest> |
OLD | NEW |