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

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

Issue 2719493003: Add PhysicalWebBroadcastService (Closed)
Patch Set: 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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 android:noHistory="true" 640 android:noHistory="true"
641 android:theme="@android:style/Theme.NoDisplay" 641 android:theme="@android:style/Theme.NoDisplay"
642 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > 642 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" >
643 <intent-filter> 643 <intent-filter>
644 <action android:name="android.intent.action.SEND" /> 644 <action android:name="android.intent.action.SEND" />
645 <category android:name="android.intent.category.DEFAULT" /> 645 <category android:name="android.intent.category.DEFAULT" />
646 <data android:mimeType="text/plain" /> 646 <data android:mimeType="text/plain" />
647 </intent-filter> 647 </intent-filter>
648 </activity> 648 </activity>
649 649
650 <!-- Service for PhysicalWebBroadcasting -->
cco3 2017/02/25 00:09:25 for Broadcasting a Physical Web URL
iankc 2017/03/02 18:53:31 Done.
651 <service
652 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro adcastService"
653 android:exported="false">
654 </service>
655
650 <!-- Providers for chrome data. --> 656 <!-- Providers for chrome data. -->
651 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider" 657 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider"
652 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 658 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
653 android:exported="true"> 659 android:exported="true">
654 <path-permission android:path="/bookmarks/search_suggest_query" 660 <path-permission android:path="/bookmarks/search_suggest_query"
655 android:readPermission="android.permission.GLOBAL_SEARCH" /> 661 android:readPermission="android.permission.GLOBAL_SEARCH" />
656 </provider> 662 </provider>
657 663
658 <!-- Provider for FileProvider. --> 664 <!-- Provider for FileProvider. -->
659 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi der" 665 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi der"
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 955 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
950 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 956 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
951 The downstream manifest replaces this block, and hence replaces the list of media route 957 The downstream manifest replaces this block, and hence replaces the list of media route
952 controllers with its own list. --> 958 controllers with its own list. -->
953 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 959 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
954 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 960 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
955 961
956 {% endblock %} 962 {% endblock %}
957 </application> 963 </application>
958 </manifest> 964 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698