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

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

Issue 2948583002: Photo Picker dialog: Convert to AIDL for easier security review. (Closed)
Patch Set: Created 3 years, 6 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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 633
634 <!-- Service for Broadcasting a Physical Web URL --> 634 <!-- Service for Broadcasting a Physical Web URL -->
635 <service 635 <service
636 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro adcastService" 636 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro adcastService"
637 android:exported="false"> 637 android:exported="false">
638 </service> 638 </service>
639 639
640 <!-- Service for decoding images in a sandboxed process. --> 640 <!-- Service for decoding images in a sandboxed process. -->
641 <service 641 <service
642 android:description="@string/decoder_description" 642 android:description="@string/decoder_description"
643 android:name="org.chromium.chrome.browser.photo_picker.DecoderServic e" 643 android:name="org.chromium.chrome.browser.photo_picker.DecoderServic eImpl"
644 android:exported="false" 644 android:exported="false"
645 android:isolatedProcess="true" 645 android:isolatedProcess="true"
646 android:process=":decoder_service" /> 646 android:process=":decoder_service" />
647 647
648 <!-- Providers for chrome data. --> 648 <!-- Providers for chrome data. -->
649 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider" 649 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider"
650 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 650 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
651 android:exported="true"> 651 android:exported="true">
652 <path-permission android:path="/bookmarks/search_suggest_query" 652 <path-permission android:path="/bookmarks/search_suggest_query"
653 android:readPermission="android.permission.GLOBAL_SEARCH" /> 653 android:readPermission="android.permission.GLOBAL_SEARCH" />
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 1005 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
1006 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 1006 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
1007 The downstream manifest replaces this block, and hence replaces the list of media route 1007 The downstream manifest replaces this block, and hence replaces the list of media route
1008 controllers with its own list. --> 1008 controllers with its own list. -->
1009 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 1009 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
1010 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 1010 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
1011 1011
1012 {% endblock %} 1012 {% endblock %}
1013 </application> 1013 </application>
1014 </manifest> 1014 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698