Chromium Code Reviews| 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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 609 android:noHistory="true" | 609 android:noHistory="true" |
| 610 android:theme="@android:style/Theme.NoDisplay" | 610 android:theme="@android:style/Theme.NoDisplay" |
| 611 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > | 611 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > |
| 612 <intent-filter> | 612 <intent-filter> |
| 613 <action android:name="android.intent.action.SEND" /> | 613 <action android:name="android.intent.action.SEND" /> |
| 614 <category android:name="android.intent.category.DEFAULT" /> | 614 <category android:name="android.intent.category.DEFAULT" /> |
| 615 <data android:mimeType="text/plain" /> | 615 <data android:mimeType="text/plain" /> |
| 616 </intent-filter> | 616 </intent-filter> |
| 617 </activity> | 617 </activity> |
| 618 | 618 |
| 619 <!-- This activity is to expose the PhysicalWeb Share option via the gen eric Android share action. --> | |
| 620 <activity | |
| 621 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha reActivity" | |
| 622 android:icon="@drawable/physical_web_notification_large" | |
| 623 android:label="@string/physical_web_share_activity_title" | |
| 624 android:enabled="false" | |
| 625 android:excludeFromRecents="true" | |
| 626 android:exported="true" | |
|
cco3
2017/01/31 01:32:57
exported? Do we need this? Other apps shouldn't
| |
| 627 android:noHistory="true" | |
| 628 android:theme="@android:style/Theme.NoDisplay" | |
| 629 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > | |
| 630 <intent-filter> | |
| 631 <action android:name="android.intent.action.SEND" /> | |
| 632 <category android:name="android.intent.category.DEFAULT" /> | |
| 633 <data android:mimeType="text/plain" /> | |
| 634 </intent-filter> | |
| 635 </activity> | |
| 636 | |
| 619 <!-- Activity for dispatching intents to Instant Apps. --> | 637 <!-- Activity for dispatching intents to Instant Apps. --> |
| 620 <activity | 638 <activity |
| 621 android:name="org.chromium.chrome.browser.instantapps.AuthenticatedP roxyActivity" | 639 android:name="org.chromium.chrome.browser.instantapps.AuthenticatedP roxyActivity" |
| 622 android:exported="false" | 640 android:exported="false" |
| 623 android:theme="@android:style/Theme.NoDisplay" | 641 android:theme="@android:style/Theme.NoDisplay" |
| 624 android:noHistory="true" | 642 android:noHistory="true" |
| 625 android:excludeFromRecents="true"> | 643 android:excludeFromRecents="true"> |
| 626 </activity> | 644 </activity> |
| 627 | 645 |
| 628 <!-- Activity to list Physical Web Urls --> | 646 <!-- Activity to list Physical Web Urls --> |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 946 choose the first MediaRouteController that can play it, so the orde r of the list can be important. | 964 choose the first MediaRouteController that can play it, so the orde r of the list can be important. |
| 947 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. | 965 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. |
| 948 The downstream manifest replaces this block, and hence replaces the list of media route | 966 The downstream manifest replaces this block, and hence replaces the list of media route |
| 949 controllers with its own list. --> | 967 controllers with its own list. --> |
| 950 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 968 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 951 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 969 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 952 | 970 |
| 953 {% endblock %} | 971 {% endblock %} |
| 954 </application> | 972 </application> |
| 955 </manifest> | 973 </manifest> |
| OLD | NEW |