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. --> | |
|
cco3
2017/01/31 19:42:55
I think it'd be preferable to put this with the ot
iankc
2017/01/31 22:51:30
Done.
| |
| 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:noHistory="true" | |
| 627 android:theme="@android:style/Theme.NoDisplay" | |
| 628 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > | |
| 629 <intent-filter> | |
|
cco3
2017/01/31 19:42:55
Is any of this intent filter needed anymore?
iankc
2017/01/31 22:51:30
Done.
| |
| 630 <action android:name="android.intent.action.SEND" /> | |
| 631 <category android:name="android.intent.category.DEFAULT" /> | |
| 632 <data android:mimeType="text/plain" /> | |
| 633 </intent-filter> | |
| 634 </activity> | |
| 635 | |
| 619 <!-- Activity for dispatching intents to Instant Apps. --> | 636 <!-- Activity for dispatching intents to Instant Apps. --> |
| 620 <activity | 637 <activity |
| 621 android:name="org.chromium.chrome.browser.instantapps.AuthenticatedP roxyActivity" | 638 android:name="org.chromium.chrome.browser.instantapps.AuthenticatedP roxyActivity" |
| 622 android:exported="false" | 639 android:exported="false" |
| 623 android:theme="@android:style/Theme.NoDisplay" | 640 android:theme="@android:style/Theme.NoDisplay" |
| 624 android:noHistory="true" | 641 android:noHistory="true" |
| 625 android:excludeFromRecents="true"> | 642 android:excludeFromRecents="true"> |
| 626 </activity> | 643 </activity> |
| 627 | 644 |
| 628 <!-- Activity to list Physical Web Urls --> | 645 <!-- 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. | 963 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. | 964 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 | 965 The downstream manifest replaces this block, and hence replaces the list of media route |
| 949 controllers with its own list. --> | 966 controllers with its own list. --> |
| 950 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" | 967 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" |
| 951 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> | 968 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> |
| 952 | 969 |
| 953 {% endblock %} | 970 {% endblock %} |
| 954 </application> | 971 </application> |
| 955 </manifest> | 972 </manifest> |
| OLD | NEW |