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

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

Issue 2841193002: Implement privacy disclosure for an unbound webapk. (Closed)
Patch Set: Created 3 years, 7 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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 <service android:name="org.chromium.chrome.browser.crash.ChromeMinidumpU ploadJobService" 839 <service android:name="org.chromium.chrome.browser.crash.ChromeMinidumpU ploadJobService"
840 android:permission="android.permission.BIND_JOB_SERVICE" 840 android:permission="android.permission.BIND_JOB_SERVICE"
841 android:exported="false"/> 841 android:exported="false"/>
842 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice" 842 <service android:name="org.chromium.chrome.browser.crash.MinidumpUploadS ervice"
843 android:exported="false"/> 843 android:exported="false"/>
844 844
845 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient" 845 <service android:name="org.chromium.chrome.browser.omaha.OmahaClient"
846 android:exported="false"/> 846 android:exported="false"/>
847 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService" 847 <service android:name="org.chromium.chrome.browser.incognito.IncognitoNo tificationService"
848 android:exported="false"/> 848 android:exported="false"/>
849 <service android:name="org.chromium.chrome.browser.webapps.WebApkDisclos ureNotificationService"
850 android:exported="false"/>
849 851
850 852
851 <!-- The following service entries exist in order to allow us to 853 <!-- The following service entries exist in order to allow us to
852 start more than one sandboxed process. --> 854 start more than one sandboxed process. -->
853 855
854 <!-- NOTE: If you change the value of "android:process" for the below se rvices, 856 <!-- NOTE: If you change the value of "android:process" for the below se rvices,
855 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. --> 857 you also need to update kHelperProcessExecutableName in chrome_cons tants.cc. -->
856 {% set num_sandboxed_services = 20 %} 858 {% set num_sandboxed_services = 20 %}
857 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES" 859 <meta-data android:name="org.chromium.content.browser.NUM_SANDBOXED_SERV ICES"
858 android:value="{{ num_sandboxed_services }}"/> 860 android:value="{{ num_sandboxed_services }}"/>
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 choose the first MediaRouteController that can play it, so the orde r of the list can be important. 993 choose the first MediaRouteController that can play it, so the orde r of the list can be important.
992 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones. 994 The most specific MediaRouteControllers should be listed first, fol lowed by more generic ones.
993 The downstream manifest replaces this block, and hence replaces the list of media route 995 The downstream manifest replaces this block, and hence replaces the list of media route
994 controllers with its own list. --> 996 controllers with its own list. -->
995 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS" 997 <meta-data android:name="org.chromium.content.browser.REMOTE_MEDIA_PLAYE RS"
996 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/> 998 android:value="org.chromium.chrome.browser.media.remote.DefaultMedia RouteController"/>
997 999
998 {% endblock %} 1000 {% endblock %}
999 </application> 1001 </application>
1000 </manifest> 1002 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698