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

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

Issue 2666833002: Create entry to PWSharing through ShareHelper (Closed)
Patch Set: Cleaning up Chrome Activity more 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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 618
619 <!-- Activity for dispatching intents to Instant Apps. --> 619 <!-- Activity for dispatching intents to Instant Apps. -->
620 <activity 620 <activity
621 android:name="org.chromium.chrome.browser.instantapps.AuthenticatedP roxyActivity" 621 android:name="org.chromium.chrome.browser.instantapps.AuthenticatedP roxyActivity"
622 android:exported="false" 622 android:exported="false"
623 android:theme="@android:style/Theme.NoDisplay" 623 android:theme="@android:style/Theme.NoDisplay"
624 android:noHistory="true" 624 android:noHistory="true"
625 android:excludeFromRecents="true"> 625 android:excludeFromRecents="true">
626 </activity> 626 </activity>
627 627
628 <!-- Activity to list Physical Web Urls --> 628 <!-- Activity to list Physical Web Urls -->
cco3 2017/02/07 00:00:54 This shouldn't be in this change.
iankc 2017/02/07 19:04:32 Done.
629 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls Activity" 629 <activity android:name="org.chromium.chrome.browser.physicalweb.ListUrls Activity"
630 android:label="@string/physical_web_list_urls_activity_title" 630 android:label="@string/physical_web_list_urls_activity_title"
631 android:theme="@style/PhysicalWebNearbyUrlsListStyle" 631 android:theme="@style/PhysicalWebNearbyUrlsListStyle"
632 android:autoRemoveFromRecents="true" 632 android:autoRemoveFromRecents="true"
633 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" 633 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize"
634 android:exported="false" > 634 android:exported="false" >
635 </activity> 635 </activity>
636 636
637 <!-- This activity is to expose the PhysicalWeb Share option via the gen eric Android share action. -->
638 <activity
639 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebSha reActivity"
640 android:icon="@drawable/physical_web_notification_large"
641 android:label="@string/physical_web_share_activity_title"
642 android:enabled="false"
643 android:excludeFromRecents="true"
644 android:noHistory="true"
645 android:theme="@android:style/Theme.NoDisplay"
646 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" >
647 <intent-filter>
648 <action android:name="android.intent.action.SEND" />
649 <category android:name="android.intent.category.DEFAULT" />
650 <data android:mimeType="text/plain" />
651 </intent-filter>
652 </activity>
653
637 <!-- Service for handling Nearby Messages --> 654 <!-- Service for handling Nearby Messages -->
638 <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMes sageIntentService" 655 <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMes sageIntentService"
639 android:exported="false" /> 656 android:exported="false" />
640 657
641 <!-- Providers for chrome data. --> 658 <!-- Providers for chrome data. -->
642 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider" 659 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider"
643 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 660 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
644 android:exported="true"> 661 android:exported="true">
645 <path-permission android:path="/bookmarks/search_suggest_query" 662 <path-permission android:path="/bookmarks/search_suggest_query"
646 android:readPermission="android.permission.GLOBAL_SEARCH" /> 663 android:readPermission="android.permission.GLOBAL_SEARCH" />
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
940 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 957 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
941 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 958 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
942 The downstream manifest replaces this block, and hence replaces the list of media route 959 The downstream manifest replaces this block, and hence replaces the list of media route
943 controllers with its own list. --> 960 controllers with its own list. -->
944 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 961 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
945 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 962 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
946 963
947 {% endblock %} 964 {% endblock %}
948 </application> 965 </application>
949 </manifest> 966 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698