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

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

Issue 2816733002: Photo Picker Dialog: Use sandboxed utility process for decoding images. (Closed)
Patch Set: Created 3 years, 8 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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 android:theme="@android:style/Theme.Translucent.NoTitleBar" 660 android:theme="@android:style/Theme.Translucent.NoTitleBar"
661 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" > 661 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc|screenLayout|smallestScreenSize" >
662 </activity> 662 </activity>
663 663
664 <!-- Service for Broadcasting a Physical Web URL --> 664 <!-- Service for Broadcasting a Physical Web URL -->
665 <service 665 <service
666 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro adcastService" 666 android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebBro adcastService"
667 android:exported="false"> 667 android:exported="false">
668 </service> 668 </service>
669 669
670 <!-- Service for decoding images in a sandboxed process. -->
671 <service
672 android:description="@string/decoder_description"
673 android:name="org.chromium.chrome.browser.photo_picker.DecoderServic e"
674 android:isolatedProcess="true"
675 android:process=":decoder_service" />
Theresa 2017/04/13 02:25:26 This should have android:exported="false" so that
Finnur 2017/04/18 17:21:14 Excellent catch! Done.
676
670 <!-- Providers for chrome data. --> 677 <!-- Providers for chrome data. -->
671 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider" 678 <provider android:name="org.chromium.chrome.browser.provider.ChromeBrows erProvider"
672 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 679 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
673 android:exported="true"> 680 android:exported="true">
674 <path-permission android:path="/bookmarks/search_suggest_query" 681 <path-permission android:path="/bookmarks/search_suggest_query"
675 android:readPermission="android.permission.GLOBAL_SEARCH" /> 682 android:readPermission="android.permission.GLOBAL_SEARCH" />
676 </provider> 683 </provider>
677 684
678 <!-- Provider for FileProvider. --> 685 <!-- Provider for FileProvider. -->
679 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi der" 686 <provider android:name="org.chromium.chrome.browser.util.ChromeFileProvi der"
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
1007 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 1014 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
1008 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 1015 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
1009 The downstream manifest replaces this block, and hence replaces the list of media route 1016 The downstream manifest replaces this block, and hence replaces the list of media route
1010 controllers with its own list. --> 1017 controllers with its own list. -->
1011 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 1018 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
1012 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 1019 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
1013 1020
1014 {% endblock %} 1021 {% endblock %}
1015 </application> 1022 </application>
1016 </manifest> 1023 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698