Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: chrome/android/java/AndroidManifest.xml

Issue 2666833002: Create entry to PWSharing through ShareHelper (Closed)
Patch Set: Reduce ChromeActivity Logic Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 android:exported="false" > 634 android:exported="false" >
635 </activity> 635 </activity>
636 636
637 <!-- Opt-in activity for Physical Web --> 637 <!-- Opt-in activity for Physical Web -->
638 <activity android:name="org.chromium.chrome.browser.physicalweb.Physical WebOptInActivity" 638 <activity android:name="org.chromium.chrome.browser.physicalweb.Physical WebOptInActivity"
639 android:label="@string/physical_web_list_urls_activity_title" 639 android:label="@string/physical_web_list_urls_activity_title"
640 android:theme="@style/PhysicalWebOptInStyle" 640 android:theme="@style/PhysicalWebOptInStyle"
641 android:exported="false"> 641 android:exported="false">
642 </activity> 642 </activity>
643 643
644 <!-- This activity is to expose the PhysicalWeb Share option via the gen eric Android share action. -->
645 <activity
646 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha reActivity"
647 android:icon="@drawable/physical_web_notification_large"
648 android:label="@string/physical_web_share_activity_title"
649 android:enabled="false"
650 android:excludeFromRecents="true"
651 android:exported="true"
mattreynolds 2017/02/03 20:08:16 Was it intentional to re-add android:exported and
iankc 2017/02/03 20:55:40 It was intentional to add the the intent filter ba
652 android:noHistory="true"
653 android:theme="@android:style/Theme.NoDisplay"
654 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" >
655 <intent-filter>
656 <action android:name="android.intent.action.SEND" />
657 <category android:name="android.intent.category.DEFAULT" />
658 <data android:mimeType="text/plain" />
659 </intent-filter>
660 </activity>
661
644 <!-- Service for handling Nearby Messages --> 662 <!-- Service for handling Nearby Messages -->
645 <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMes sageIntentService" 663 <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMes sageIntentService"
646 android:exported="false" /> 664 android:exported="false" />
647 665
648 <!-- Providers for chrome data. --> 666 <!-- Providers for chrome data. -->
649 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider" 667 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider"
650 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 668 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
651 android:exported="true"> 669 android:exported="true">
652 <path-permission android:path="/bookmarks/search_suggest_query" 670 <path-permission android:path="/bookmarks/search_suggest_query"
653 android:readPermission="android.permission.GLOBAL_SEARCH" /> 671 android:readPermission="android.permission.GLOBAL_SEARCH" />
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 965 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
948 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 966 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
949 The downstream manifest replaces this block, and hence replaces the list of media route 967 The downstream manifest replaces this block, and hence replaces the list of media route
950 controllers with its own list. --> 968 controllers with its own list. -->
951 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 969 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
952 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 970 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
953 971
954 {% endblock %} 972 {% endblock %}
955 </application> 973 </application>
956 </manifest> 974 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698